Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want the url regular expression and how to use it using javascript how can i make it?

and We can use regular expression through javascript ? Or Not?

i want to verify that the user had enterd a true url

share|improve this question
Please don't abuse the inline code formatting tool. – alex Jun 16 '11 at 5:04
3  
I don't know, it sort of looks like a ransom note. ;-) – yitwail Jun 16 '11 at 5:12
I Googled, google.com/…. – Kumar Jun 16 '11 at 5:12
You need to be more specific about your requirements. Be aware that the URL specification is very generous - even foo is a valid URL. – Gareth Jun 16 '11 at 7:22

closed as not a real question by BalusC, alex, Brock Adams, Chathuranga Chandrasekara, Graviton Jun 16 '11 at 9:05

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You might see the regular expressions used in http://stevenlevithan.com/demo/parseuri/js/assets/parseuri.js with the blog post at http://blog.stevenlevithan.com/archives/parseuri and a nice demo/test suite at http://stevenlevithan.com/demo/parseuri/js/

share|improve this answer

of course javascript have regex

 var url_match = /^(((http|https|ftp):\/\/)?([[a-zA-Z0-9]\-\.])+(\.)([[a-zA-Z0-9]]){2,4}([[a-zA-Z0-9]\/+=%&_\.~?\-]*))*$/
  url_match.test(string);

here is a full example

<script>
    function is_valid_url(string) {
        var url_match = /^(((http|https|ftp):\/\/)?([[a-zA-Z0-9]\-\.])+(\.)([[a-zA-Z0-9]]){2,4}([[a-zA-Z0-9]\/+=%&_\.~?\-]*))*$/

        return url_match.test(string);
    }
    function check_validation(form) {
        url = document.getElementById("url");
        if (is_valid_url(url.value)) {
           return true;
        } else {
           alert("Please enter a valid url");
           return false;
        }
    }
</script>
<form action="" method="post" onsubmit="return check_validation(this)">
  Url: <input type="text" name="url" id="url" />
  <input type="submit" value="submit" />
</form>
share|improve this answer

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