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.
编写正则表达式的正确方法是什么:
/后跟任意数字
/
例如,使用“/1”、“/2”而不是“/a”等触发。
聚合酶链反应
/\/\d/
这将匹配任何 '/' 后跟任何单个字符编号的数字。
/\/\d+/
这将匹配 '/' 后跟任何一组连续数字。
/^\/d+$/
这将匹配 '/' 后跟任何一组连续数字,这些数字是该行唯一的东西。