NSRegularExpression* regExp = [[NSRegularExpression alloc]
initWithPattern:@"^[-+s]*[0-9s]+$"` options:NSRegularExpressionCaseInsensitive
error:nil];
我用了上面的表达。但它接受+
and-
值。但问题是,它在整数前接受多个符号。
1)+++++12
2)--++12
这些案件也被接受。
可以使用什么,它应该只接受整数前的一个符号?提前致谢