i have Data in thousand lines like
http://xxxx.com/xxx-xxx-xxx-xxxx/ 60% 2 Weekly 2014-01-01 00:00
want to remove everything after / in every url
(output should be in clean url like below)
Thanks
i have Data in thousand lines like
http://xxxx.com/xxx-xxx-xxx-xxxx/ 60% 2 Weekly 2014-01-01 00:00
want to remove everything after / in every url
(output should be in clean url like below)
Thanks
Use the replace menu by pressing Ctrl+H, and make sure regular expressions are enabled. Then,
Find
(^.*\/).*
and Replace$1
: https://regex101.com/r/lJ4lF9/12Alternatively, Find
(?m)(^.*\/).*
and Replace$1
: https://regex101.com/r/lJ4lF9/13Explanation:
Within a capture group, Find the start of the string (
^
) followed by anything any number of times (.*
) until the last "/", then anything any number of times. Replace with the captured group by referencing it as$1
.(?m)