elsenorjose
Technical User
Ok, so I searched the forum and I can't figure out how to modify something for my use. I'm having a hard time writing a regular expression in my query. Here's some sample data:
I'm trying to do a comparison of URLs that have query arguments after the 'portid:12345' section vs. URLs that don't. The 5 digits after 'portid:' will change so I can't just hard code
The good news is that's a pretty consistent pattern; in other words, portid: followed by 5 digits is how this appears in all URLs. Can someone help me with this?
Thanks.
I'm trying to do a comparison of URLs that have query arguments after the 'portid:12345' section vs. URLs that don't. The 5 digits after 'portid:' will change so I can't just hard code
Code:
...url like '%portid:12345'
The good news is that's a pretty consistent pattern; in other words, portid: followed by 5 digits is how this appears in all URLs. Can someone help me with this?
Thanks.