gpt4 book ai didi

java - 需要正则表达式专业知识

转载 作者:行者123 更新时间:2023-11-30 03:57:53 26 4
gpt4 key购买 nike

我需要帮助找出规则的正则表达式:

6 characters, starting with letter R (uppercase), and followed by digits where at least one digit is not 0.

到目前为止,我的尝试是“[R][0-9]{5}[1-9]+”,但当它应该为 R01001 返回 true 时,我一直得到 false。我很困惑,任何帮助将不胜感激。

最佳答案

您可以使用:

^R(?=0*[1-9])[0-9]{5}$

工作演示:http://regex101.com/r/bA7yI9

说明:

enter image description here

关于java - 需要正则表达式专业知识,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22653916/

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