拆分 NSString
快问。如果 NSString 包含某个子字符串,我需要对其进行拆分。有人可以向我展示如何执行此操作的示例吗?
// good string
string = RESULT: 123.23
// bad string (has no result prefix)
string = asldkfjasdlkfj
if( string has "RESULT: " in it )
{
string2 = (something that returns the 123.23 part)
}
非常感谢!
Quick question. I need to split an NSString, if it contains a certain substring. Can someone show me an example of how to do this?
// good string
string = RESULT: 123.23
// bad string (has no result prefix)
string = asldkfjasdlkfj
if( string has "RESULT: " in it )
{
string2 = (something that returns the 123.23 part)
}
Thanks very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
分割 NSString 的最佳方法是:
我希望你发现它很有用
The best way to split a NSString is:
I hope you found it usefull
好吧,有两种快速方法:
但是不要忘记处理无效的情况。
Alright then, two quick methods:
However don't forget to handle invalid cases.
编辑为返回后缀,而不是前缀
Edited to return suffix, not prefix
为了获得更大的灵活性,您可以尝试 NSScanner。
For even greater flexibility, you could try NSScanners.