I have strings that could look like this:
http://mywebsite.com/1234
http://mywebsite.com/foo
http://mywebsite.com/bar
http://google.com
I want to use a regex to only grab the strings that are preceeded with "http://mywebsite.com/" and only contain letters after that (not numbers). So in my example, the following strings would be valid:
http://mywebsite.com/foo
http://mywebsite.com/bar
so far I have a regex that looks like this:
"http://mywebsite.com/[a-zA-Z]+"
but I'm not getting any results