Reputation: 3297
I use to code Sublime Text 2 and sometimes I need remove diacritics. How to remove diacritics from part of text? Is there som filter or something?
Thanks for any suggestions. Feri
Upvotes: 3
Views: 1312
Reputation: 471
My suggestion would be to look at this question and it's answers:
Regex - What would be regex for matching foreign characters?
You can use the regex find utility of Sublime and try the regex that is suggested by Fredrik Mörk
\p{L}
Upvotes: 2