gpt4 book ai didi

ios - 检测主题标签,包括主题标签中的 &

转载 作者:行者123 更新时间:2023-11-28 21:13:44 25 4
gpt4 key购买 nike

我可以检测到这样的主题标签。

+ (NSArray *)getHashArrayWithInputString:(NSString *)inputStr
{
NSError *error = nil;
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"#(\\w+)" options:0 error:&error];

NSArray *matches = [regex matchesInString:inputStr options:0 range:NSMakeRange(0, inputStr.length)];
NSMutableArray *muArr = [NSMutableArray array];
for (NSTextCheckingResult *match in matches) {
NSRange wordRange = [match rangeAtIndex:1];
NSString* word = [inputStr substringWithRange:wordRange];

NSCharacterSet* notDigits = [[NSCharacterSet decimalDigitCharacterSet] invertedSet];
if ([word rangeOfCharacterFromSet:notDigits].location == NSNotFound)
{
// newString consists only of the digits 0 through 9
}
else
[muArr addObject:[NSString stringWithFormat:@"#%@",word]];
}
return muArr;
}

问题是如果 inputStr 是“#D&D”,它只能检测到#D。我该怎么办?

最佳答案

为此,使用您的正则表达式添加您想要允许的特殊字符。

#(\\w+([&]*\\w*)*) //To allow #D&D&d...

#(\\w+([&-]*\\w*)*) //To allow both #D&D-D&...

以同样的方式添加您想要的其他特殊字符。

所以只需像这样更改您的正则表达式即可。

NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"#(\\w+([&]*\\w*)*)" options:0 error:&error];

关于ios - 检测主题标签,包括主题标签中的 &,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42130456/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com