日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

检测字符串包含emoji表情

發布時間:2023/12/13 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 检测字符串包含emoji表情 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

有時候在開發時會遇到不希望字符串中包含emoji表情的情況,Google之后發現了方法,但是似乎iOS9之后的emoji無法過濾,繼續尋找方法,在一個NSString的擴展中發現了辦法

#import <Foundation/Foundation.h>/**Category to search emojis on an NSString.The category allows to check if has emojis, the number of emojis and the range of the emojis.*/ @interface NSString (EMOEmoji)/**Calculate the NSRange for every emoji on the string.@return array with the range for every emoji.*/ - (NSArray *)emo_emojiRanges;/**Calculate if the string has any emoji.@return YES if the string has emojis, No otherwise.*/ - (BOOL)emo_containsEmoji;/**Calculate if the string consists entirely of emoji.@return YES if the string consists entirely of emoji, No otherwise.*/ - (BOOL)emo_isPureEmojiString;/**Calculate number of emojis on the string.@return the total number of emojis.*/ - (NSInteger)emo_emojiCount;@end

<pre name="code" class="objc">#import "NSString+EMOEmoji.h"@implementation NSString (EMOEmoji)#pragma mark - EmojiRanges- (NSArray *)emo_emojiRanges {__block NSMutableArray *emojiRangesArray = [NSMutableArray new];[self enumerateSubstringsInRange:NSMakeRange(0,[self length])options:NSStringEnumerationByComposedCharacterSequencesusingBlock:^(NSString *substring,NSRange substringRange,NSRange enclosingRange,BOOL *stop){const unichar hs = [substring characterAtIndex:0];// surrogate pairif (0xd800 <= hs &&hs <= 0xdbff){if (substring.length > 1){const unichar ls = [substring characterAtIndex:1];const int uc = ((hs - 0xd800) * 0x400) + (ls - 0xdc00) + 0x10000;if (0x1d000 <= uc &&uc <= 0x1f9c0){[emojiRangesArray addObject:[NSValue valueWithRange:substringRange]];}}}else if (substring.length > 1){const unichar ls = [substring characterAtIndex:1];if (ls == 0x20e3 ||ls == 0xfe0f ||ls == 0xd83c){[emojiRangesArray addObject:[NSValue valueWithRange:substringRange]];}}else{// non surrogateif (0x2100 <= hs &&hs <= 0x27ff){[emojiRangesArray addObject:[NSValue valueWithRange:substringRange]];}else if (0x2B05 <= hs &&hs <= 0x2b07){[emojiRangesArray addObject:[NSValue valueWithRange:substringRange]];}else if (0x2934 <= hs &&hs <= 0x2935){[emojiRangesArray addObject:[NSValue valueWithRange:substringRange]];}else if (0x3297 <= hs &&hs <= 0x3299){[emojiRangesArray addObject:[NSValue valueWithRange:substringRange]];}else if (hs == 0xa9 ||hs == 0xae ||hs == 0x303d ||hs == 0x3030 ||hs == 0x2b55 ||hs == 0x2b1c ||hs == 0x2b1b ||hs == 0x2b50){[emojiRangesArray addObject:[NSValue valueWithRange:substringRange]];}}}];return emojiRangesArray; }#pragma mark - ContainsEmoji- (BOOL)emo_containsEmoji {__block BOOL containsEmoji = NO;[self enumerateSubstringsInRange:NSMakeRange(0,[self length])options:NSStringEnumerationByComposedCharacterSequencesusingBlock:^(NSString *substring,NSRange substringRange,NSRange enclosingRange,BOOL *stop){const unichar hs = [substring characterAtIndex:0];// surrogate pairif (0xd800 <= hs &&hs <= 0xdbff){if (substring.length > 1){const unichar ls = [substring characterAtIndex:1];const int uc = ((hs - 0xd800) * 0x400) + (ls - 0xdc00) + 0x10000;if (0x1d000 <= uc &&uc <= 0x1f9c0){containsEmoji = YES;}}}else if (substring.length > 1){const unichar ls = [substring characterAtIndex:1];if (ls == 0x20e3 ||ls == 0xfe0f ||ls == 0xd83c){containsEmoji = YES;}}else{// non surrogateif (0x2100 <= hs &&hs <= 0x27ff){containsEmoji = YES;}else if (0x2B05 <= hs &&hs <= 0x2b07){containsEmoji = YES;}else if (0x2934 <= hs &&hs <= 0x2935){containsEmoji = YES;}else if (0x3297 <= hs &&hs <= 0x3299){containsEmoji = YES;}else if (hs == 0xa9 ||hs == 0xae ||hs == 0x303d ||hs == 0x3030 ||hs == 0x2b55 ||hs == 0x2b1c ||hs == 0x2b1b ||hs == 0x2b50){containsEmoji = YES;}}if (containsEmoji){*stop = YES;}}];return containsEmoji; }#pragma mark - PureEmojiString- (BOOL)emo_isPureEmojiString {if (self.length == 0) {return NO;}__block BOOL isPureEmojiString = YES;[self enumerateSubstringsInRange:NSMakeRange(0,[self length])options:NSStringEnumerationByComposedCharacterSequencesusingBlock:^(NSString *substring,NSRange substringRange,NSRange enclosingRange,BOOL *stop){BOOL containsEmoji = NO;const unichar hs = [substring characterAtIndex:0];// surrogate pairif (0xd800 <= hs &&hs <= 0xdbff){if (substring.length > 1){const unichar ls = [substring characterAtIndex:1];const int uc = ((hs - 0xd800) * 0x400) + (ls - 0xdc00) + 0x10000;if (0x1d000 <= uc &&uc <= 0x1f9c0){containsEmoji = YES;}}}else if (substring.length > 1){const unichar ls = [substring characterAtIndex:1];if (ls == 0x20e3 ||ls == 0xfe0f ||ls == 0xd83c){containsEmoji = YES;}}else{// non surrogateif (0x2100 <= hs &&hs <= 0x27ff){containsEmoji = YES;}else if (0x2B05 <= hs &&hs <= 0x2b07){containsEmoji = YES;}else if (0x2934 <= hs &&hs <= 0x2935){containsEmoji = YES;}else if (0x3297 <= hs &&hs <= 0x3299){containsEmoji = YES;}else if (hs == 0xa9 ||hs == 0xae ||hs == 0x303d ||hs == 0x3030 ||hs == 0x2b55 ||hs == 0x2b1c ||hs == 0x2b1b ||hs == 0x2b50){containsEmoji = YES;}}if (!containsEmoji){isPureEmojiString = NO;*stop = YES;}}];return isPureEmojiString; }#pragma mark - EmojiCount- (NSInteger)emo_emojiCount {__block NSInteger emojiCount = 0;[self enumerateSubstringsInRange:NSMakeRange(0,[self length])options:NSStringEnumerationByComposedCharacterSequencesusingBlock:^(NSString *substring,NSRange substringRange,NSRange enclosingRange,BOOL *stop){const unichar hs = [substring characterAtIndex:0];// surrogate pairif (0xd800 <= hs &&hs <= 0xdbff){if (substring.length > 1){const unichar ls = [substring characterAtIndex:1];const int uc = ((hs - 0xd800) * 0x400) + (ls - 0xdc00) + 0x10000;if (0x1d000 <= uc &&uc <= 0x1f9c0){emojiCount = emojiCount + 1;}}}else if (substring.length > 1){const unichar ls = [substring characterAtIndex:1];if (ls == 0x20e3 ||ls == 0xfe0f ||ls == 0xd83c){emojiCount = emojiCount + 1;}}else{// non surrogateif (0x2100 <= hs &&hs <= 0x27ff){emojiCount = emojiCount + 1;}else if (0x2B05 <= hs &&hs <= 0x2b07){emojiCount = emojiCount + 1;}else if (0x2934 <= hs &&hs <= 0x2935){emojiCount = emojiCount + 1;}else if (0x3297 <= hs &&hs <= 0x3299){emojiCount = emojiCount + 1;}else if (hs == 0xa9 ||hs == 0xae ||hs == 0x303d ||hs == 0x3030 ||hs == 0x2b55 ||hs == 0x2b1c ||hs == 0x2b1b ||hs == 0x2b50){emojiCount = emojiCount + 1;}}}];return emojiCount; }@end


ps:擴展的鏈接是https://github.com/woxtu/NSString-RemoveEmoji 感謝作者


總結

以上是生活随笔為你收集整理的检测字符串包含emoji表情的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。