I have the following string:
https://www.google.com/today/sunday/abcde2.hopeho.3345GETD?weatherType=RAOM&...
https://www.google.com/today/monday/jbkwe3.ho4eho.8495GETD?weatherType=WHTDSG&...
I'd like to extract jbkwe3.ho4eho.8495GETD
or abcde2.hopeho.3345GETD
. Anything between the {weekday}/
and the ?weatherType=
.
I've tried (?<=sunday\/)$.*?(?=\?weatherType=)
but it only works for the first line and I want to make it applicable to all strings regardless the value of {weekday}
.
I tried (?<=\/.*\/)$.*?(?=\?weatherType=)
but it didn't work. Could anyone familiar with Regex can lend some help? Thank you!
[Update] I'm new to regex but I was experimenting it on sublime text editor via the "find" functionality which I think should be PCRE (according to this post)