Constructor RefinedSoundex
RefinedSoundex()
Creates an instance of the RefinedSoundex object using the default US English mapping.
Declaration
public RefinedSoundex()
RefinedSoundex(Char[])
Creates a refined soundex instance using a custom mapping. This constructor can be used to customize the mapping, and/or possibly provide an internationalized mapping for a non-Western character set.
Declaration
public RefinedSoundex(char[] mapping)
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | mapping | Mapping array to use when finding the corresponding code for a given character. |
RefinedSoundex(String)
Creates a refined Soundex instance using a custom mapping. This constructor can be used to customize the mapping, and/or possibly provide an internationalized mapping for a non-Western character set.
Declaration
public RefinedSoundex(string mapping)
Parameters
Type | Name | Description |
---|---|---|
System.String | mapping | Mapping string to use when finding the corresponding code for a given character. |