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
([msrpTextField.text lengthOfBytesUsingEncoding:NSUTF8StringEncoding] <=2)confused me. – ipwnstuff Jun 8 '12 at 7:43@"myStringMatchesRegEx = %d ",myStringMatchesRegExto print the BOOL as a digit then compared it with[self ipValidationUsingRegex:msaTextField.text] == YESas YES/NO. – ipwnstuff Jun 8 '12 at 7:56