let us extract name form the URL
paste the URL in the notepad and press crtl+f , and select ‘regular expressions ‘ from search mode
now, enter the regex in the find tab to fetch names
1 | .*?\?=(\w+)$ |
Now, the selected name will be fetched form regex as (\1).
it can work on numerous links like:-
1 2 3 4 5 6 7 8 9 10 11 |
And only the part after first “?=” will be fetched
Leave a Reply