如何编写“如果输入!=一个数字,则...”的代码
嗯,我正在尝试弄清楚这件事。你会如何编码这样的东西(用 Javglish):
if(input != a number)
{
do something
}
我将如何编码?
Well, I'm trying to figure out this thing. How would you code something like this (in Javglish):
if(input != a number)
{
do something
}
How would I code this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自http://rosettacode.org/wiki/Determine_if_a_string_is_numeric#Java:(
优化不佳,更好的例子在链接内,就像 RegEx 一样)
为将来的查看者编辑:前面提到的 RegEx 方法要优雅得多,但如果您不熟悉,则有点难以遵循熟悉正则表达式:
From http://rosettacode.org/wiki/Determine_if_a_string_is_numeric#Java:
(Poorly optimized, better examples inside the link, like the RegEx one)
Edit for future viewers: The aforementioned RegEx method is much more elegant, but is a little harder to follow, if you aren't familiar with Regular Expressions: