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
