我正在寻找为此构建正则表达式的正确方法:
我有这些网站,我需要剪切字符串或 斜杠之间的任何内容。 使用https://regexr.com/
我有这个结果。有人可以帮帮我吗?
http://example.com/string/anotherThings
http://example.com/string/anotherThings
http://example.com/string_string/anotherThings
答案 0 :(得分:0)
https://test.com/page/number/1
,你真正想要哪一个?page/number
,则正则表达式应为(?<=\/)[\w_\]+(?=\/)
page
,number
,请尝试(?<=\/)[\w_]+(?=\/)