NSString * str = @"123/21年123"
NSCharacterSet *nonDigitCharacterSet = [[NSCharacterSet decimalDigitCharacterSet] invertedSet];
//获取字符串中的数字
str = [[str componentsSeparatedByCharactersInSet:nonDigitCharacterSet] componentsJoinedByString:@""];
输出12321123
原文地址:https://www.cnblogs.com/lulushen/p/9884873.html
时间: 2024-11-11 11:34:42