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