我的应用程序中有4个文本字段。
我将textfields验证为textfield allow 0,1,...9
和.
,因为我将代码编写为fallows
- (IBAction) textfield:(id)sender {
if ([textfield.text length] > 0) {
if ([textfield.text length] > 10){
textfield.text = [textfield.text substringWithRange:NSMakeRange(0, 10)];
}
else {
//retrieve last character input from texfield
int I01 = [homevalue.text length];
int Char01 = [homevalue.text characterAtIndex:I01-1];
//check and accept input if last character is a number from 0 to 9
if ( (Char01 < 46) || (Char01 > 57) || (Char01 == 47) ) {
if (I01 == 1) {
textfield.text = nil;
}
else {
textfield.text = [homevalue.text substringWithRange:NSMakeRange(0, I01-1)];
}
}
}
}
}
它工作正常,现在我需要验证.
只允许在文本字段中使用一次。
例如:123.45
根据我的代码,如果我再次放置.
,则允许。
例如:123.45.678
但是一旦我放置它就不会允许。那个文本字段不允许。
编:123.45678
我怎么能这样做,
任何人都可以帮助我。
提前感谢你。
答案 0 :(得分:4)
对于以“23.67”
之类的数字开头的文本,请尝试使用此谓词NSString *decimalRegex = @"[0-9]+([.]([0-9]+)?)?"; // @"[0-9]+[.][0-9]+";
NSPredicate *decimalTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", decimalRegex];
BOOL isValidDecimal = [decimalTest evaluateWithObject:[textField text]];
如果你想允许“。”在像“.95”这样的第一个地方使用以下正则表达式,
NSString *decimalRegex = @"[0-9]*([.]([0-9]+)?)?"; //@"[0-9]*[.][0-9]+";
您的代码应该如下所示,
- (IBAction)textfield:(id)sender {
int textLength = [[textfield text] length];
if (textLength > 0) {
NSString *decimalRegex = @"[0-9]+([.]([0-9]+)?)?"; //@"[0-9]+[.][0-9]+";
NSPredicate *decimalTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", decimalRegex];
BOOL isValidDecimal = [decimalTest evaluateWithObject:[textField text]];
if (!isValidDecimal) {
NSString *text = [[textField text] substringToIndex:textLength - 1];
[textfield setText:text]
}
}
}
我想这应该有效!试一试!
答案 1 :(得分:0)
你可以使用这种方法
- (NSRange)rangeOfCharacterFromSet:(NSCharacterSet *)aSet options:(NSStringCompareOptions)mask range:(NSRange)aRange