如何编写“如果输入!=一个数字,则...”的代码

发布于 2024-12-11 22:57:38 字数 130 浏览 0 评论 0原文

嗯,我正在尝试弄清楚这件事。你会如何编码这样的东西(用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

送你一个梦 2024-12-18 22:57:38

来自http://rosettacode.org/wiki/Determine_if_a_string_is_numeric#Java:(

优化不佳,更好的例子在链接内,就像 RegEx 一样)

public boolean isNumeric(String input) {
  try {
    Integer.parseInt(input);
    return true;
  }
  catch (NumberFormatException e) {
    // s is not numeric
    return false;
  }

为将来的查看者编辑:前面提到的 RegEx 方法要优雅得多,但如果您不熟悉,则有点难以遵循熟悉正则表达式:

public static boolean isNumeric(String inputData) {
  return inputData.matches("[-+]?\\d+(\\.\\d+)?");
}

From http://rosettacode.org/wiki/Determine_if_a_string_is_numeric#Java:

(Poorly optimized, better examples inside the link, like the RegEx one)

public boolean isNumeric(String input) {
  try {
    Integer.parseInt(input);
    return true;
  }
  catch (NumberFormatException e) {
    // s is not numeric
    return false;
  }

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:

public static boolean isNumeric(String inputData) {
  return inputData.matches("[-+]?\\d+(\\.\\d+)?");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文