Method | Description | |
---|---|---|
Acronym ( string pinyin ) : string | ||
ContainsChinese ( string word ) : bool | ||
Pinyin ( string word ) : string[] |
replace chinese character with pinyin, non chinese character won't be modified should be word or sentence, instead of single character. e.g. 微软
|
|
PinyinComination ( string characters ) : string[][] |
Method | Description | |
---|---|---|
Alphabet ( ) : System | ||
Combination ( string array1, string array2 ) : string[] |
public static Acronym ( string pinyin ) : string | ||
pinyin | string | |
return | string |
public static ContainsChinese ( string word ) : bool | ||
word | string | |
return | bool |
public static Pinyin ( string word ) : string[] | ||
word | string | |
return | string[] |
public static PinyinComination ( string characters ) : string[][] | ||
characters | string | should be word or sentence, instead of single character. e.g. 微软 |
return | string[][] |