jimmarks
jimmarks

Reputation:

Regex to match domain

Having trouble figuring this out and feeling quite stupid...

I have many urls like this /imagebuilder-ptop.asp?imgCode=166 all I need is a regex that will match /imagebuilder-(ANTHING WHATSOEVER)

If is it /imagebuilder-lkd fa;lsdfh adhf alkdfhdfh I want to match it...anything.

Upvotes: 0

Views: 299

Answers (1)

David Wolever
David Wolever

Reputation: 154682

/imagebuilder-(.*) would do it.

Upvotes: 3

Related Questions