문제

i am trying to remove zero "0" from left in the string means if string is "0000560352" 

it will give it to me "560352". it's dynamically change so if user will enter in textbox like "0560352" then only first zero will remove from string.any idea for this thing.

도움이 되었습니까?

해결책

It is too simple just convert it to NSInteger and then bring back to NSString

NSString *str = @"0000560352";
NSInteger i = [str integerValue];
str = [NSString stringWithFormat:@"%d",i];

다른 팁

You do not need a loop or a conversion

NSCharacterSet *zeros = [NSCharacterSet characterSetWithCharactersInString:@"0"];
NSString *nonLeadingZerosString = [@"000560352" stringByTrimmingCharactersInSet:zeros];

But at the end of the day you want to use a number formatter.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top