vote up 1 vote down star

need help to create regular expression matching string

www.*.abc.*/somestring

Here * is wild card it can be anyhing like us, uk

or com, edu

like

 www.us.abc.com/somestring
www.uk.abc.edu/somestring
flag

23% accept rate
Can your TLD be .co.uk or .com.au, this would make a difference to your solution – Patrick McDonald Jul 2 at 11:07
What is TLD? Actually URL can contain co.uk so I am trying with www\.[^.]+\.abc\.[^.]+\.[^.]+ – Alien01 Jul 2 at 11:13
If I want to do a match of any character the how can I do that. Suppose I have url www.abc.co.uk/12=1231&wwd=13&eef=1231231 How to match the string "12=1231&wwd=13&eef=1231231" there is not constraint on this, it can contain any number/kind of characters. – Alien01 Jul 2 at 11:23

5 Answers

vote up 5 vote down

Put [^.]+ instead of asterisks and \. instead of dots, and you'll be done.

www\.[^.]+\.abc\.[^.]+/somestring

[^.] matches any non-dot, [^.]+ matches a string of nondots with at least one character. \. matches a dot, because . matches any character.

link|flag
vote up 1 vote down
www\.([a-z]{2})\.abc\.(com|edu)/(.+)

You can then extends this regex to include other valid generic top-level domain name (net, org, ...)

www\.([a-z]{2})\.abc\.(com|edu|org|net)/(.+)

You will get the Country code top-level domain in the group number 1, the top-level domain in group 2.

link|flag
vote up 0 vote down

Try the following regular expression:

^www\.\w+\.abc\.\w+\/\w+$
link|flag
vote up 0 vote down

Something like that:

www\.\w+\.abc\.\w+\/somestring

I do recommend to use this Online RegEx builder to learn how it works

link|flag
vote up 0 vote down

If it's a URL, it can match any a-z character, or 0-9, or a dash (-). Each component has at least one character, so use + as the multiplier. Currently, tlds are only a-z, but this regex is a bit more robust (you never know!):

/www\.[-a-z0-9]+?\.abc\.[-a-z0-9]+?\/somestring/

It assumes nothing about the length of each component, and that it's all lowercase.

link|flag
You are right, but what if you want to limit yourself to the country codes or top level domain names (and only those ones)? [az] would suffice. – VonC Jul 2 at 11:05
[a-z], but otherwise you're right. I mention that in my answer anyway :) – Jeremy Jul 2 at 11:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.