TextField Validation With Regular Expression

后端 未结 4 1887
没有蜡笔的小新
没有蜡笔的小新 2020-12-12 17:29

I need help with code that looks at a textfield make sure it starts with either a (+ or -) then has 3 integers after it.

So valid data looks like +234 or -888

4条回答
  •  猫巷女王i
    2020-12-12 18:13

    I am not sure how you'd like to handle user input and feedback. First I'll show a simple way to keep the user in the editing mode of the textField if her input is not valid.

    First of all two delegate methods:

    - (BOOL)textFieldShouldReturn:(UITextField *)aTextField
    {
        [aTextField resignFirstResponder];
        return YES;
    }
    
    - (BOOL)textFieldShouldEndEditing:(UITextField *)aTextField
    {
        return [self validateInputWithString:aTextField.text];
    }
    

    The testing method, which just returns YES or NO whether the input is valid or not:

    - (BOOL)validateInputWithString:(NSString *)aString
    {
        NSString * const regularExpression = @"^([+-]{1})([0-9]{3})$";
        NSError *error = NULL;
        NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:regularExpression
                                                                               options:NSRegularExpressionCaseInsensitive
                                                                                 error:&error];
        if (error) {
            NSLog(@"error %@", error);
        }
    
        NSUInteger numberOfMatches = [regex numberOfMatchesInString:aString
                                                            options:0
                                                              range:NSMakeRange(0, [aString length])];
        return numberOfMatches > 0;
    }
    

    That's it. However I'd recommend showing some live status to the user whether his input is ok or not. Add the following notifcation, for example in your viewDidLoad method:

    - (void)viewDidLoad
    {
        // ...
        [[NSNotificationCenter defaultCenter] addObserver:self 
                                                 selector:@selector(validateInputCallback:) 
                                                     name:@"UITextFieldTextDidChangeNotification" 
                                                   object:nil];
    }
    
    - (void)validateInputCallback:(id)sender
    {
        if ([self validateInputWithString:textField.text]) {
            // For example turn a label green and let it say: "OK"
        } else {
            // For example turn a label red and let it say: "Allowed: + or minus followed by exactly three digits"
        }
    }
    

    Finally: If you need to access the capture groups (+ or - and the number) of the regular expression the following code will help:

    // ... reg ex creation ...
    NSArray *matches = [regex matchesInString:aString
                                      options:0
                                        range:NSMakeRange(0, [aString length])];
    
    for (NSTextCheckingResult *match in matches) {
        for (int i = 0; i < [match numberOfRanges]; i++) {
            NSLog(@"range %d: %d %d", i, [match rangeAtIndex:i].location, [match rangeAtIndex:i].length);
            NSLog(@"substring %d: %@", i, [aString substringWithRange:[match rangeAtIndex:i]]);
        }
    }
    

提交回复
热议问题