标签: regex url notepad++
我有这些网址:
http://web.com/George-Eliot/5234-20412_4-54534.html http://web.com/Reading-HD/3434-20412_4-43454.html
如何提取中间部分: George-Eliot 和阅读高清?我的意思是删除除中间部分以外
答案 0 :(得分:3)
您可以使用capturing groups。
使用此正则表达式^http:\/\/[^\/]*\/([^\/]*).*,然后用\1
^http:\/\/[^\/]*\/([^\/]*).*
\1
DEMO
答案 1 :(得分:0)
^.*\/(?=[^\/]*\/[^\/]*$)|\/[^\/]*$
试试这个。empty string。见。演示。
empty string
https://regex101.com/r/dL7oF8/4