Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to remove emoji characters from NSString by using

NSRegularExpression *regex3 = [NSRegularExpression regularExpressionWithPattern:@"[\\uE000-\\uF8FF]|\\uD83C[\\uDF00-\\uDFFF]|\\uD83D[\\uDC00-\\uDDFF])" options:0 error:&error];

and later I googled for it and found that iOS 5 is using new unicode 6.0.

Does anybody know the regular expression for emoji in iOS 5 or later

I did google for that for few hours still, no luck

share|improve this question
1  

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.