• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

iphone - 查找由字符串分隔的 NSString 内的范围

[复制链接]
菜鸟教程小白 发表于 2022-12-13 13:33:31 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

虽然 iOS 提供了很多有用的字符串方法,但我找不到一个好的解决方案来获取由给定字符分隔的字符串范围。

原字符串:

|You| will |achieve| everything you |want| if you |work| hard

分隔符是|

单独的字符串1:你(范围:3、3)

单独的string2:实现(范围:12、7)

单独的字符串3:想要(范围:37、4)

单独的字符串4:工作(范围:51、4)

NSString 方法的 substringFromIndex: 使得使用 NSString 找到这些范围成为可能,但这似乎效率低下。

请告诉我解决此问题的更好方法。



Best Answer-推荐答案


您应该使用 NSRegularExpressionmatchesInStringptions:range:方法。

Return Value

An array of NSTextCheckingResult objects. Each result gives the overall matched range via its range property, and the range of each individual capture group via its rangeAtIndex: method. The range {NSNotFound, 0} is returned if one of the capture groups did not participate in this particular match.

你可能有这样的代码:

NSString *str = @"|You| will |achieve| everything you |want| if you |work| hard";
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:
    @"[^|]*" options: 0 error:nil];
NSArray *results = [regex matchesInString:str 
                                  options:0 
                                    range:NSMakeRange(0, [str length])];
// ... do interesting code on results...
// Note that you should iterate through the array and use the 'range' property
// to get the range.

for (NSTextCheckingResult *textResult in results)
{
   if (textResult.range.length > 0)
   {
      NSString *substring = [myStr substringWithRange:textResult.range];
      NSLog(@"string at range %@ :: \"%@\"", 
            NSStringFromRange(textResult.range), 
            substring);
   }
}

日志:

string at range {1, 3} :: "You"

string at range {5, 6} :: " will "

string at range {12, 7} :: "achieve"

string at range {20, 16} :: " everything you "

string at range {37, 4} :: "want"

string at range {42, 8} :: " if you "

string at range {51, 4} :: "work"

string at range {56, 5} :: " hard"

关于iphone - 查找由字符串分隔的 NSString 内的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10385196/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap