如何在iPhone sdk中分隔字符串
我需要获取 ( 和 ) 之间的字符串。例如,我有一个像“name(123)”这样的字符串。我需要获取 ( 和 ) 之间的 123 的值。
I need to get a string that which is in between ( and ). For example I have a string like "name(123)". I need to get the values of 123 which between ( and ).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用正则表达式来提取字符串,您可以使用块和 NSRegularExpression (自 iOS4.0 起)来做到
这一点:
希望这有帮助,
文森特
You should use a regular expression to extract to the string, you can do that with blocks and NSRegularExpression (since iOS4.0)
Something like this :
Hope this helps,
Vincent