Anyone knows the Regexp for AS3 to get the domain name from URL? E.g: "http://www.google.com/translate" will get "http://www.google.com"
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
There's is a very complete utility class for dealing with URIs in as3corelib. Perhaps you might want to use this instead of rolling your own.
|
|||
|
|
|
This should do the work: |
|||
|
|
|
The previous regex provided missed some url types i needed, so for the benefit of googlers, I use (http://|https://)?(www.)?[A-z]*(.com|.co.uk|.us|.org|.net|.mobi) in C#
See example at RegExr. You can remove remove "(...)?" parts to stop that part appearing the match, for example to remove the http matching that I require. Probably not perfect, but works for me. |
|||
|
|