gpt4 book ai didi

java - 正则表达式匹配除零以外的所有整数

转载 作者:行者123 更新时间:2023-11-30 10:18:29 26 4
gpt4 key购买 nike

我想用固定位数表示除零以外的所有整数。到目前为止,我一直在使用 (\\d{3})。它工作正常,除了它不排除 000

如何使用正则表达式编写此代码?

最佳答案

String input = ...
if (input.matches("\\d{3}") && !input.equals("000")) {
... // input is a three digit number that's not 000
}

不要低估蛮力的力量。

关于java - 正则表达式匹配除零以外的所有整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49216451/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com