I'm trying to do a regex operations in Java. But when I search in the Turkish text , I'm having trouble . For example;
Search Text = "Ahmet Yıldırım" or "Esin AYDEMİR"
//The e-mail stated in part(Ex: yildirim@example.com) , trying to look in name.
Regex Strings = "yildirim" or "aydemir".
Searched text is dynamically changing.Therefore , how can I solve this by using java regex pattern. Or How do I convert Turkish characters(Ex: AYDEMİR convert to AYDEMIR
or Yıldırım -> Yildirim
).
Sorry, about my grammer mistakes!...