例如 -
text = Československá obchodní banka;
text string contains diacritics like Č , á etc.
我想写一个函数,我将传递这个字符串“Československá obchodní banka”和 function will return true if string contains diacritics else false
.
我必须分别处理包含不属于 Az 或 az 范围的字符的变音符号和字符串。
1) If String contains diacritics then I have to do some XXXXXX on it.
2) If String contains character other than A-Z or a-z and not contains diacritics then do some other operations YYYYY.
我不知道该怎么做。