You can include it in regex
Regex reg = new Regex("cli[eë]nt"); // will match both 'client' and 'cliënt'
or you can remove all the accents in the string and then apply the regular expression.
string test = "here góes the cóntent with client and cliënt"; char[] replacement = { 'a','a','a','a','a','a','c','e','e','e','e','i','i','i','i','n','o','o','o','o','o','u','u','u','u','y','y' }; char[] accents = { 'à','á','â','ã','ä','å','ç','é','è','ê','ë','ì','í','î','ï','ñ','ò','ó','ô','ö','õ','ù','ú','û','ü','ý','ÿ' }; for (int i = 0; i < accents.Length; i++) { test = test.Replace(accents[i], replacement[i]); }
This is not very effective, but will do the job with a bit of text.