Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having a text field where the user can enter the IP Address or any url. But the thing is I need to validate only when the user enters IP Address and if he enters url it should not validate.

Here is Wt I done:

-(BOOL)ipValidationUsingRegex:(NSString *)ipAddressStr
{
    NSString *ipValidStr = ipAddressStr;
    NSString *ipRegEx =
    @"^([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])$";

    NSPredicate *regExPredicate =[NSPredicate predicateWithFormat:@"SELF MATCHES %@", ipRegEx];
    BOOL myStringMatchesRegEx = [regExPredicate evaluateWithObject:ipValidStr];

    NSLog(@"myStringMatchesRegEx = %d ",myStringMatchesRegEx);
    return myStringMatchesRegEx;
}



-(IBAction)saveAction:(id)sender
{
    if([msaTextField.text length] == 0 || [msrpTextField.text length] == 0)
    {
        UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Message" message:@"Please enter all fields" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
        [alert show];
    }

    else
    {
    if(([msaTextField.text stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"0123456789."]].length > 0) ) {
        //URL
        NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
        // saving an NSString
        [prefs setObject:msaTextField.text forKey:@"MSA"];
        // saving an NSString
        [prefs setObject:msrpTextField.text forKey:@"MSRP"];

        [prefs synchronize];

        //[self.navigationController popViewControllerAnimated:YES];
        [self dismissModalViewControllerAnimated:YES];

        }
    else {
       //IP

        if(([self ipValidationUsingRegex:msaTextField.text] == YES) )
        {
            NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
            // saving an NSString
            [prefs setObject:msaTextField.text forKey:@"MSA"];
            // saving an NSString
            [prefs setObject:msrpTextField.text forKey:@"MSRP"];

            [prefs synchronize];

            //[self.navigationController popViewControllerAnimated:YES];
            [self dismissModalViewControllerAnimated:YES];
        }
        else 
        {
            UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Error" message:@"IP range is Invalid" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
            [alert show];
        }

    }
    }

}

The problem I am facing here is the IP Address is validating correctly but the thing is when I enter the url at that time also it saying Invalid Range of Ip as an Alert.

The URL I entered is like http://www.yahoo.com

Please give me the suggestions

share|improve this question
Aren't ip addresses 4 bytes long? ([msrpTextField.text lengthOfBytesUsingEncoding:NSUTF8StringEncoding] <=2) confused me. – ipwnstuff Jun 8 '12 at 7:43
don't consider tat msrpTextField. consider only msaTextfield. – avs Jun 8 '12 at 7:46
@ipwnstuff: Now I edited it check it once. – avs Jun 8 '12 at 7:48
Alright, I reviewed the code and was wondering why you used @"myStringMatchesRegEx = %d ",myStringMatchesRegEx to print the BOOL as a digit then compared it with [self ipValidationUsingRegex:msaTextField.text] == YES as YES/NO. – ipwnstuff Jun 8 '12 at 7:56
@ipwnstuff:oops I pasted the code from my past prom. I didn't removed it. – avs Jun 8 '12 at 8:48

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.