从@中删除字符串
NSString *string=@"[email protected]";
现在我想从 @ 中删除导致“test1”的字符串的所有字符。 请建议我如何做到这一点。 提前致谢!!
NSString *string=@"[email protected]";
Now I want to delete all the characters of the string from @ which result in "test1".
Please suggest me how to do this.
Thanks in advance!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用该方法
,因此您的代码应如下所示。
编辑:
使用
componentsSeparatedByString
方法,现在你的数组恰好包含两个组件,
如果你仍然想在字符串末尾添加@..
You could use the method
So your code should be like below.
EDITED:
Use
componentsSeparatedByString
method,Now your array contain exactly two component,
if you still want @ at the end of your string ..
您可以使用 substringToIndex
You can use substringToIndex