标签: javascript regex
如何编写正则表达式以匹配/path/subpath和所有/path/subpath/*,而不是/path/subpathrandomcharacters
/path/subpath
/path/subpath/*
/path/subpathrandomcharacters
我目前正在尝试此\/path\/subpath.*
\/path\/subpath.*
但这也匹配/path/subpathrandomcharacters
答案 0 :(得分:1)
检查路径/子部分的值后,它可以是斜杠,然后是任何东西。
\/path\/subpath(\/.*)*
https://www.regextester.com/?fam=103013