Hi All
I have a text contains Japan Words also need to remove japan word and only consider English Word.
Thank You!!
Hi All
I have a text contains Japan Words also need to remove japan word and only consider English Word.
Thank You!!
Hi,
Can you try the following expression?
System.Text.RegularExpressions.Regex.Replace(yourString,"[\p{IsHiragana}\p{IsKatakana}\p{IsCJKUnifiedIdeographs}\uFF61-\uFF9F]","")
Regards,
Hi @vineelag
Please find the solution for your query below.
System.Text.RegularExpressions.Regex.Replace(str_inputstring,โ[^a-zA-Z\s!@#$%^&*()_+{}:;<>,.?/\|`~-]โ,โโ)
Happy Automation
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.