Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 使用正则表达式从字符串中获取数字
嗨,我需要检查一个字符串是否为以下格式。
case1/clientid2
在示例中,case 和 clientid 将是静态的,但数字会发生变化。是否可以使用正则表达式?
是的,这绝对是重复的。
这是您可以使用的正则表达式,case[\d]+/clientid[\d]+
case[\d]+/clientid[\d]+
编辑:删除了转义字符。