Method GetMetaphone
GetMetaphone(String)
Find the metaphone value of a string. This is similar to the soundex algorithm, but better at finding similar sounding words. All input is converted to upper case. Limitations: Input format is expected to be a single ASCII word with only characters in the A - Z range, no punctuation or numbers.
Declaration
public virtual string GetMetaphone(string txt)
Parameters
Type | Name | Description |
---|---|---|
System.String | txt | String to find the metaphone code for. |
Returns
Type | Description |
---|---|
System.String | A metaphone code corresponding to the string supplied. |