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

DecodeSoundexInt    

简述

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


    testStr:= "Tinysoft SoundexInt:返回表示AText的发音的整数";
    testStr:=DecodeSoundexInt(SoundexInt(testStr,4));

    return testStr;
    //T521
    参考
    SoundexInt 
相关