通过空格将 1 个 NSString 分成两个 NSString
我有一个 NSString
,最初看起来像 链接名称。我删除了 html 标签,现在有一个
NSString
,看起来
http://Link.com SiteName
如何将两者分成不同的 NSString
,这样我就可以
http://Link.com
并且
SiteName
特别想显示 SiteName
在标签中,只需使用 http://Link.com
在 UIWebView
中打开,但当它都是一个字符串时我不能。非常感谢任何建议或帮助。
I have an NSString
which initially looked like <a href="http://link.com"> LinkName</a>
. I removed the html tags and now have an NSString
that looks like
http://Link.com SiteName
how can I separate the two into different NSString
s so I would have
http://Link.com
and
SiteName
I specifically want to show the SiteName
in a label and just use the http://Link.com
to open in a UIWebView
but I can't when it is all one string. Any suggestions or help is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
NSLog 输出:
带有嵌入空格的站点名称:
额外的好处,使用 RE: NSLog 输出处理
NSLog output:
Bonus, handle a site name with an embedded space with a RE:
NSLog output:
NSString 有一个带有签名的方法:
它返回一个组件数组作为其结果。像这样使用它:
祝你好运。
NSString has a method with the signature:
It returns an array of components as its result. Use it like this:
Good luck.