BASH:测试字符串是否有效

发布于 2024-11-28 10:02:08 字数 192 浏览 1 评论 0原文

有没有办法反转它,以便它首先检查它是否无效?

if expr "$string" : '-\?[0-9]\+$' >/dev/null
then
  echo "String is a valid integer."
else
  echo "String is not a valid integer."
fi

Is there a way to invert this so that it checks if it is invalid first?

if expr "$string" : '-\?[0-9]\+
 >/dev/null
then
  echo "String is a valid integer."
else
  echo "String is not a valid integer."
fi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

偷得浮生 2024-12-05 10:02:08

是的,我同意@nobody和@BenJackson,您所需要的只是添加“逻辑非”运算符,即

    if ! expr "$string" : '-\?[0-9]\+

我希望这有帮助。

PS,由于您似乎是新用户,如果您得到的答案对您有帮助,请记住将其标记为已接受,和/或给它 +(或 -)作为有用的答案。

>/dev/null ; then #--^ right there ;-) echo "String is not a valid integer." else echo "String is a valid integer." fi

我希望这有帮助。

PS,由于您似乎是新用户,如果您得到的答案对您有帮助,请记住将其标记为已接受,和/或给它 +(或 -)作为有用的答案。

Yes, I agree with @nobody and @BenJackson, all you need is to add the 'logical NOT' operator , i.e.

    if ! expr "$string" : '-\?[0-9]\+

I hope this helps.

P.S. as you appear to be a new user, if you get an answer that helps you please remember to mark it as accepted, and/or give it a + (or -) as a useful answer.

>/dev/null ; then #--^ right there ;-) echo "String is not a valid integer." else echo "String is a valid integer." fi

I hope this helps.

P.S. as you appear to be a new user, if you get an answer that helps you please remember to mark it as accepted, and/or give it a + (or -) as a useful answer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文