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
|
|
need help to create regular expression matching string
Here * is wild card it can be anyhing like us, uk or com, edu like
|
||||||
|
|
|
Put
|
||
|
|
|
|
You can then extends this regex to include other valid generic top-level domain name (net, org, ...)
You will get the Country code top-level domain in the group number 1, the top-level domain in group 2. |
||
|
|
|
|
Try the following regular expression:
|
||
|
|
|
|
Something like that:
I do recommend to use this Online RegEx builder to learn how it works |
||
|
|
|
|
If it's a URL, it can match any
It assumes nothing about the length of each component, and that it's all lowercase. |
|||