Php – Regex ignore specific string between two strings
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…