I am trying to fetch ‘domain’ from ‘http://domain.com/some-more-path’ using regex:
/(.*)(http|https):\/\/(.*)(\/)(.*)/ and then $3
My issue is instead of ‘domain’ I get ‘domain/some-more-path’.
What am I doing wrong?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Change
to
The problem is the
.*part.*is a greedy quantifier and will consume as much characters as possible. If you put a?behind the*you switch the behaviour of the qualifier to non-greedy (i.e. it consumes only as much characters as needed).