如何为整数的正则表达式扫描返回布尔值?
我正在检查我的对象属性是否有罪魁祸首:
^[1-3]{3}$
What is the method used to scan integers for regexp?
I'm looking through my object attributes for culprits that are not :
^[1-3]{3}$
What is the method used to scan integers for regexp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一些示例:
由于
nil
被视为false
,因此您拥有了布尔值。前任:
Some examples:
Since
nil
is considered asfalse
, you have your boolean.Ex:
您还可以使用以下之一:
或
'132' =~ /^\d+$/ ?真:假
You may use also one of the following:
or
'132' =~ /^\d+$/ ? true : false