I'm looking for a way to compare string values where certain characters within the strings may be punctuated characters such as é
or ô
, however, the puncuation should be disregarded. For example, when searching a list of names, the user might provide criteria Rene
which should match list entries Rene
and René
(i.e. ASCII 101 and 233 should be regarded as the same thing).
Thanx
EDIT: Preferably across all UNICODE characters. I suppose one could [should?] implement some custom solution for this; I was just wondering if there is something that already exist - almost like Char.GetBaseCharacterFromPunctuatedCharacter(char)
:P