天软金融分析.NET函数大全 > TSL函数 > 基础函数 > 字符串 > 发音相关函数

DecodeSoundexWord    

简述

是SoundexWord函数的反函数,将表示发音的整数转成发音的字符串(SoundEx Codes)。
定义
DecodeSoundexWord(AValue: Integer): String;
参数
名称类型说明
AValue Integer整数,表示发音特征的整数
返回 String
字符串,发音特征字符串
  • 范例


    testStr:= "Tinysoft SoundexInt:返回表示AText的发音的整数";
    testStr:=decodesoundexWord(soundexWord(SoundEx(testStr,4)));//24206
    return testStr;
    //T000
    参考
    SoundexWord 
相关