gpt4 book ai didi

java - 我如何编写正则表达式 "All characters are the same"?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:59:37 25 4
gpt4 key购买 nike

我希望它匹配:

aaaaaa
bb
c

但不是:

aaabaaa
cd

...

最佳答案

假设正则表达式引擎支持反向引用,

^(.)\1*$

在 Java 中是

theString.matches("(.)\\1*")

关于java - 我如何编写正则表达式 "All characters are the same"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3258444/

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