Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
What is the best regular expression to check if a string is a valid URL?

I have this validate function :

function validate_url(url)
    {
        var pattern1= new RegExp(/^((([A-Za-z]{3,9}:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)$/);
        var pattern2= new RegExp(/^[A-Za-z][A-Za-z0-9]*(?:_[A-Za-z0-9]+)*[.][A-Za-z][A-Za-z0-9]*(?:_[A-Za-z0-9]+)*([.][A-Za-z][A-Za-z0-9]*(?:_[A-Za-z0-9]+)*)*$/);
        if (pattern1.test(url) || pattern2.test(url))
            return true;
        else
            return false;
    }

and I want to check url validation for these patterns :

     * www.example.com
     * http://www.example.com
     * http://example.com
     * http://example.example.com
     * https://www.example.com
     * https://example.com
     * https://example.example.com
     * example.example.com
     * example.com

".com" is optional .

Actually , it was working until I test this url :

      www,google.com 

It accepts the comma !! I tried to remove it from my regular expression and it still accept it ! what's wrong with it ? I made a big search for a suitable regular expression for my case but they were so HUGE and didn't give me what I want . any suggestion ? Thanks in advance

share|improve this question

marked as duplicate by Frank van Puffelen, Jan Dvorak, flem, raina77ow, ig0774 Dec 29 '12 at 12:45

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

This part of your first pattern allows more or less any combination of characters after http(s)://:

(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]

Your regex is completely wrong. It allows all sorts of stuff.

See this (duplicate?) question for better regex.

share|improve this answer
okay , I took it from a question on stackoverflow ! – Sally Dec 29 '12 at 12:45
You can use this regular expression tester to check your expression. – flem Dec 29 '12 at 12:47
1  
hehe this'is the answer I took it from stackoverflow.com/a/8234912/1936096 and you're saying it wrong and u're giving me its link as answer ! – Sally Dec 29 '12 at 12:48
2  
I solved myself ... var pattern2= new RegExp(/^(http[:]\/\/|https[:]\/\/|ftp[:]\/\/)?[A-Za-z][A-Za-z0-9]*(?:_[A-Za-z0-‌​9]+)*[.][A-Za-z][A-Za-z0-9]*(?:_[A-Za-z0-9]+)*([.][A-Za-z][A-Za-z0-9]*(?:_[A-Za-z‌​0-9]+)*)*$/); – Sally Dec 29 '12 at 14:24
1  
thanks :) I found this pagecolumn.com/tool/regtest.htm mush easier !! – Sally Jan 1 at 11:00
show 14 more comments

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