Hi,
I have a column in my data that has URLs. I need only those URLs that end with: /installers
The column has many URLs with "/installers" in it. But I don't want any characters after "/installers"
I tried pattern matching with this: '%[/]installers[^A-Z0-9]', but I didn't get the intended results.
Below is a picture of the URL that I'm capture in the data:
Any help is appreciated. Thanks