So I have a string like this:
test //ita https://example.com lics// test // another // one
I can capture text between 2 "//" strings easy enough like so:
\/\/(.*?)\/\/
Which will return the groups ita https: and test however I'm trying to get it to ignore the cases where there is a "http://" or "https://".
So I'm trying to get it so that it only returns ita https://example.com lics and another.
Looks like your on the right track.
Heres how it works
You should post a few string examples to better test but based on what I tried, looks like this works.