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.
我想评估应该匹配 /post/:post_id 模式的 url 路径。
例如 /post/1 、 /post/2 、 /post/mypost 等应该匹配。
这应该是什么 reg 表达式?
根据:post_idURL 中的内容,如果它是一个数字,这样的事情可能会起作用:
:post_id
/^\/post\/\d+$/
它基本上说 URL 必须以/post/[0-9]+. 如果:post_id有任何价值,您可以使用:
/post/[0-9]+
/^\/post\/\w+$/
这基本上说 URL 必须以/post/[0-9A-Za-z_]+. 您想接受的任何其他字符,您都可以添加。
/post/[0-9A-Za-z_]+
要检查以某种模式开头,请使用 ^。