How to separate emojis entered (through default keyboard) on textfield

穿精又带淫゛_ 提交于 2019-11-27 06:16:13

问题


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.


回答1:


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.




回答2:


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.



来源:https://stackoverflow.com/questions/34524322/how-to-separate-emojis-entered-through-default-keyboard-on-textfield

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!