我从 API 读取数据并看到以下字符串:text = "\n\Ufeff211419";
怎样才能处理它有结果:211419
?我使用trim
了 of 的功能NSString
,但它不起作用。非常感谢!
我从 API 读取数据并看到以下字符串:text = "\n\Ufeff211419";
怎样才能处理它有结果:211419
?我使用trim
了 of 的功能NSString
,但它不起作用。非常感谢!
试试这个,
NSString *strippedString=@"";
NSString *originalString = @"1This is my string.#/hfg34y387t59hguhfytfrg64r34nfr31234";
for (int i=0; i<[originalString length]; i++) {
if (isdigit([originalString characterAtIndex:i])) {
strippedString=[NSString stringWithFormat:@"%@%c",strippedString,[originalString characterAtIndex:i]];
}
}
NSLog(@"string is%@",strippedString);
substringFromIndex
或者substringToIndex
会有所帮助!