Reputation: 6554
I entered a two emojis in textfield ๐จโ๐จโ๐งโ๐ง๐, here I'm getting total number of 5 characters length whereas 4 characters for first emoji and 1 character for second. Looks like apple has combined 4 emojis to form a one.
I'm looking for the swift code where I can separate each of emojis separately, suppose by taking the above example I should be getting 2 strings/character separately for each emoji.
Can any one help me to solve this, I've tried many things like regex separation or componentsSeparatedByString or characterSet. but unfortunately ended up with negative.
Thanks in advance.
Upvotes: 7
Views: 1436
Reputation: 539705
Update for Swift 4 (Xcode 9)
As of Swift 4 (tested with Xcode 9 beta) a "Emoji ZWJ Sequence" is
treated as a single Character
as mandated by the Unicode 9 standard:
let str = "๐จโ๐จโ๐งโ๐ง๐"
print(str.count) // 2
print(Array(str)) // ["๐จโ๐จโ๐งโ๐ง", "๐"]
Also String
is a collection of its characters (again), so we can
call str.count
to get the length, and Array(str)
to get all
characters as an array.
(Old answer for Swift 3 and earlier)
This is only a partial answer which may help in this particular case.
"๐จโ๐จโ๐งโ๐ง" is indeed a combination of four separate characters:
let str = "๐จโ๐จโ๐งโ๐ง๐" //
print(Array(str.characters))
// Output: ["๐จโ", "๐จโ", "๐งโ", "๐ง", "๐"]
which are glued together with U+200D (ZERO WIDTH JOINER):
for c in str.unicodeScalars {
print(String(c.value, radix: 16))
}
/* Output:
1f468
200d
1f468
200d
1f467
200d
1f467
1f60d
*/
Enumerating the string with the .ByComposedCharacterSequences
options combines these characters correctly:
var chars : [String] = []
str.enumerateSubstringsInRange(str.characters.indices, options: .ByComposedCharacterSequences) {
(substring, _, _, _) -> () in
chars.append(substring!)
}
print(chars)
// Output: ["๐จโ๐จโ๐งโ๐ง", "๐"]
But there are other cases where this does not work, e.g. the "flags" which are a sequence of "Regional Indicator characters" (compare Swift countElements() return incorrect value when count flag emoji). With
let str = "๐ฉ๐ช"
the result of the above loop is
["๐ฉ", "๐ช"]
which is not the desired result.
The full rules are defined in "3 Grapheme Cluster Boundaries" in the "Standard Annex #29 UNICODE TEXT SEGMENTATION" in the Unicode standard.
Upvotes: 4
Reputation: 8225
You can use this code example or this pod.
To use it in Swift, import the category into the YourProject_Bridging_Header
#import "NSString+EMOEmoji.h"
Then you can check the range for every emoji in your String:
let example: NSString = "๐จโ๐จโ๐งโ๐ง๐" // your string
let ranges: NSArray = example.emo_emojiRanges() // ranges of the emojis
for value in ranges {
let range:NSRange = (value as! NSValue).rangeValue
print(example.substringWithRange(range))
}
// Output: ["๐จโ๐จโ๐งโ๐ง", "๐"]
I created an small example project with the code above.
For further reading, this interesting article from Instagram.
Upvotes: 1