0

我怎样才能得到一个独特的字符NSString

我要做的是获取所有非法字符,NSString以便我可以提示用户输入了哪些字符,因此需要删除。我首先定义一个NSCharacterSet 合法字符,将它们与每个合法字符的出现分开,然后将剩下的(只有非法字符)加入一个新的NSString. 我现在正计划获得新的独特字符NSString(希望是一个数组),但我在任何地方都找不到参考。

NSCharacterSet *legalCharacterSet = [NSCharacterSet
    characterSetWithCharactersInString:@"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLKMNOPQRSTUVWXYZ0123456789-()&+:;,'.# "];

NSString *illegalCharactersInTitle = [[self.titleTextField.text.noWhitespace
    componentsSeparatedByCharactersInSet:legalCharacterSet]
    componentsJoinedByString:@""];
4

3 回答 3

2

尝试对您的代码进行以下修改:

// legal set
NSCharacterSet *legalCharacterSet = [NSCharacterSet
                                         characterSetWithCharactersInString:@"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLKMNOPQRSTUVWXYZ0123456789-()&+:;,'.# "];

// test strings
NSString *myString = @"LegalStrin()";
//NSString *myString = @"francesco@gmail.com"; illegal string


NSMutableCharacterSet *stringSet = [NSCharacterSet characterSetWithCharactersInString:myString];
// inverts the set
NSCharacterSet *illegalCharacterSet = [legalCharacterSet invertedSet];

// intersection of the string set and the illegal set that modifies the mutable stringset itself
[stringSet formIntersectionWithCharacterSet:illegalCharacterSet];

// prints out the illegal characters with the convenience method
NSLog(@"IllegalStringSet: %@", [self stringForCharacterSet:stringSet]);

我调整了从另一个stackoverflow问题打印的方法:

- (NSString*)stringForCharacterSet:(NSCharacterSet*)characterSet
{
    NSMutableString *toReturn = [@"" mutableCopy];
    unichar unicharBuffer[20];
    int index = 0;

    for (unichar uc = 0; uc < (0xFFFF); uc ++)
    {
        if ([characterSet characterIsMember:uc])
        {
            unicharBuffer[index] = uc;

            index ++;

            if (index == 20)
            {
                NSString * characters = [NSString stringWithCharacters:unicharBuffer length:index];
                [toReturn appendString:characters];

                index = 0;
            }
        }
    }

    if (index != 0)
    {
        NSString * characters = [NSString stringWithCharacters:unicharBuffer length:index];
        [toReturn appendString:characters];
    }
    return toReturn;
}
于 2013-11-13T10:33:05.873 回答
2

那应该对你有帮助。我找不到任何准备使用的功能。

NSMutableSet *uniqueCharacters = [NSMutableSet set];
NSMutableString *uniqueString = [NSMutableString string];
[illegalCharactersInTitle enumerateSubstringsInRange:NSMakeRange(0, illegalCharactersInTitle.length) options:NSStringEnumerationByComposedCharacterSequences usingBlock:^(NSString *substring, NSRange substringRange, NSRange enclosingRange, BOOL *stop) {
    if (![uniqueCharacters containsObject:substring]) {
        [uniqueCharacters addObject:substring];
        [uniqueString appendString:substring];
    }
}];
于 2013-11-13T10:28:54.400 回答
0

首先,你必须小心你认为的角色。NSString在谈论 Unicode 所指的 UTF-16 代码单元时,API使用字符一词,但孤立地处理代码单元不会给您用户所认为的字符。例如,有组合字符与前一个字符组成以产生不同的字形。此外,还有代理对,只有在配对时才有意义。

因此,您实际上需要收集包含用户认为的字符的子字符串。

我正要编写与 Grzegorz Krukowski 的答案非常相似的代码。他打败了我,所以我不会,但我会补充说,由于我上面引用的原因,您过滤合法字符的代码已损坏。例如,如果文本包含“é”并且它被分解为“e”加上一个组合的重音符号,那么您的代码将去掉“e”,留下一个悬空的组合重音符号。我相信您的意图是将“é”视为非法。

于 2013-11-13T10:38:15.097 回答