剪切字符串中的一个字符

发布于 2024-11-04 18:41:46 字数 100 浏览 0 评论 0原文

我有一个字符串

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不乱于心 2024-11-11 18:41:46
-(NSString *) substringFromIndex: i

返回从 i 处的字符到末尾的

-(NSString *) substringWithRange: range

子字符串 返回基于指定范围的子字符串

-(NSString *) substringToIndex: i

返回从字符串开头到索引 i 处的字符的子字符串

如果您只想删除任何非零值之前的 0,则使用

int i = [str intValue];
str = [NSString stringWithFormat:@"%d",i];
-(NSString *) substringFromIndex: i

Returns a substring from the character at i to the end

-(NSString *) substringWithRange: range

Returns a substring based on a specified range

-(NSString *) substringToIndex: i

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

int i = [str intValue];
str = [NSString stringWithFormat:@"%d",i];
思念绕指尖 2024-11-11 18:41:46

您可以使用这个:-

    NSString *string=@"01";
    NSString *temp=[string substringWithRange:NSMakeRange(1, 1)];
    NSLog(@"temp%@",temp);

You can use this:-

    NSString *string=@"01";
    NSString *temp=[string substringWithRange:NSMakeRange(1, 1)];
    NSLog(@"temp%@",temp);
默嘫て 2024-11-11 18:41:46

如果你想从任意长度的 NSString 对象中删除前导零,你可以这样做:

NSRange aRange;
aRange.location = 0;
aRange.length = 1;
[theBreakerCode stringByReplacingOccurrencesOfString:@"0" withString:@"" options:NSLiteralSearch range:aRange];

没有前导零的字符串保持不变。

If you want to remove the leading zero from an arbitrary length NSString object you could do:

NSRange aRange;
aRange.location = 0;
aRange.length = 1;
[theBreakerCode stringByReplacingOccurrencesOfString:@"0" withString:@"" options:NSLiteralSearch range:aRange];

Strings without a leading zero are untouched.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文