gpt4 book ai didi

regex - 数字的正则表达式不正确

转载 作者:行者123 更新时间:2023-12-02 00:15:51 25 4
gpt4 key购买 nike

我需要一个仅匹配 10、11 和 12 个数字的正则表达式。我试过这个:

\b[10|11|12]{1}\b

但此处未找到匹配项。你能帮我一下吗?

最佳答案

你应该使用

\b(10|11|12)\b

在工作中检查一下 here

此外,无需指定 {1},它是隐式的。

Square brackets 用于匹配集合中的字符

Match anything inside the square brackets for ONE character position once and only once, for example, [12] means match the target to 1 and if that does not match then match the target to 2 while [0123456789] means match to any character in the range 0 to 9.

关于regex - 数字的正则表达式不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16644704/

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