I am trying to automate an application, where it is as like google engine. When user enters "société" (Accented character), it gives details which has either "société"(Accented) or "societe" (English) in it.
So my job is to validate is details contains given keyword. I dont have problem on comparing accented characters. EX: "société" = "société". But the case "société" == "societe" fails. Python code below:
>>> "société".find("societe")
-1 #Fail
>>> "société".find("société")
0 #Success
>>>
So how to match equivalent english word in Accented characters.
Any help will be highly apreciated. Thanks