ios - 在iOS中检查整数或十进制数的正则表达式
<p><p>我需要检查文本是整数还是十进制数。</p>
<p>我尝试使用以下方法:</p>
<pre><code>NSString *expression =@"\\d*";
NSError *error ;
NSRegularExpression *regex = ;
NSTextCheckingResult *isValid = )];
</code></pre>
<p>但是即使文本是<code>2.14.256</code>,结果也是真的。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>@Yogesh:谢谢老兄。但是,这个正则表达式适合我的需要。</p>
<pre><code>- (BOOL)numberValidation:(NSString *)text {
NSString *regex = @"^(*|*[.]*)$";
NSPredicate *test = ;
BOOL isValid = ;
return isValid;
}
</code></pre>
<p>这个</p></p>
<p style="font-size: 20px;">关于ios - 在iOS中检查整数或十进制数的正则表达式,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/24530896/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/24530896/
</a>
</p>
页:
[1]