NSString *tempstring = [dic objectForKey:key];//@"[]{}(#%-*+=_)\\|~(<>$%^&*)_+ "
NSCharacterSet *doNotWant = [NSCharacterSet characterSetWithCharactersInString:@"@¥"];
tempstring = [[tempstring componentsSeparatedByCharactersInSet:doNotWant]componentsJoinedByString:@""];
时间: 2024-12-06 19:10:55