0

I would like to detect a Other language string (Non English) using regex .

My Current Regex expression looks like [a-z,A-Z,0-9,ä,ö,ü,Ä,Ö,Ü,ß,_] in iOS

Kindly Provide me your inputs on this

Avinash Raj
  • 172,303
  • 28
  • 230
  • 274
Sundar_Mob
  • 155
  • 12
  • Maybe have a look at this: http://stackoverflow.com/questions/22275994/example-of-using-nsregularexpression-to-detect-if-string-contains-cyrillic and this: http://stackoverflow.com/questions/9576384/use-regular-expression-to-match-any-chinese-character-in-utf-8-encoding – Larme Sep 03 '14 at 12:34

1 Answers1

0

(\p{L}),(\w+),(\w),

Above Regex expressions are used to allow other languages to be detected on custom attributed link

Sundar_Mob
  • 155
  • 12