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

SoundexWord    

简述

返回表示AText的发音的整数。整数是根据通过发音特征的字符串(SoundEx Codes)的前4个字符转化来的,并和字符串长度相关。
定义
SoundexWord(AText: String): Integer;
参数
名称类型说明
AText String字符串数组,表示发音特征的字符串
返回 Integer
整数,表示发音特征的整数
  • 范例


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

    return testStr;
    //24206
    参考
    DecodeSoundexWord 
相关