xcode 从字符串中删除最后一个字符
我正在开发一个 Xcode 程序,需要从字符串中删除最后 5 个字符。
有谁知道如何从 NSString
中删除最后 5 个字符?
I am working on a Xcode
program and need to cut the last 5 characters from a string.
Does anybody know how to cut the last 5 characters from a NSString
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
几分钟前我自己找了一下
just looked for it my self few minutes ago
我希望这个答案还不算太晚:
虽然您提供了一个字符串“1234567889”并且上面的代码应该可以正常工作,但是,在现实生活中,如果它是一个不同的字符串,那么请在执行上述操作之前检查以确保它不为空,否则 str.length 将返回 -1 导致错误。
我希望这有帮助。
亲切的问候,
海德·萨蒂
I hope it's not too late for this answer:
Although you provided a string of "1234567889" and the above code should work fine, however, in real life if it's a different string then please check to ensure that it's not empty before doing the above, otherwise, str.length would return -1 causing an error.
I hope this helps.
Kind Regards,
Heider Sati