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