I am pretty much weak in creating Regular Expression. So i am here.
I need a regular expression satisfying the following.
NSString *nameRegex =@"My RegEx";
NSPredicate *nameTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", nameRegex];
validationResult=[nameTest evaluateWithObject:password];
These are the conditions
It should contain letters and numbers
Minimum 7 characters Max 32 characters
No Space
No Symbols
Please Help..