剪切字符串中的一个字符
我有一个字符串
string = "01";
,但我想删除“0”并创建一个仅包含“1”的新字符串。有快速的解决方案吗?
I have a string
string = "01";
but I want to delete the '0' and have a new string with only '1'. Is there a fast solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
返回从 i 处的字符到末尾的
子字符串 返回基于指定范围的子字符串
返回从字符串开头到索引 i 处的字符的子字符串
如果您只想删除任何非零值之前的 0,则使用
Returns a substring from the character at i to the end
Returns a substring based on a specified range
Returns a substring from the start of the string up to the character at index i
And if you only want to remove 0's before any nonzero value then make a
您可以使用这个:-
You can use this:-
如果你想从任意长度的 NSString 对象中删除前导零,你可以这样做:
没有前导零的字符串保持不变。
If you want to remove the leading zero from an arbitrary length NSString object you could do:
Strings without a leading zero are untouched.