I’m new at using Javascript regexp and after several failed attempts I’m still wondering how to check if an URL starts with http://www.google.fr
I’m new at using Javascript regexp and after several failed attempts I’m still wondering
Share
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.
But you might want to allow more variations of the address, and it’s also important to check that what follows it is something valid, so you don’t match things like
http://www.google.fr-h4xx0r.comEg:
/^http:\/\/(?:www\.)?google\.fr(?=\/|$)/i