Im using Regex to match string ignoring case in Unity.
My code:
...
string _word = "Esto Es Una Cadena Con Texto"
string final = "esto es una cadena con texto"
if(Regex.IsMatch(final, Regex.Escape(_word), RegexOptions.IgnoreCase)){
//
}
...
According this:
string _word = "Estó Es Uná Cadená Cón Textó"
string final = "esto es una cadena con texto"
Is there a code to match previous string ignoring case and accent?