entry  javascript :: js_match

Library


Rating
100%      0%
Vote count: 1 / View count: 475
Author: MrThys
Social bookmark
Useful? Share this page with others.

del.icio.us Favicon Digg Favicon Email Favicon Google Favicon LinkedIn Favicon Live Favicon Slashdot Favicon StumbleUpon Favicon Technorati Favicon TwitThis Favicon

Regex: URL Validation
Regex for javascript to validate an url;

var url = "http://www.test.com/testing"
var regex = /http:\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/

if (regex.test(url))
{
window.alert("URL is Valid.");
}
else
{
window.alert("URL is invalid.");
}
Expression

Expression:

Attributes:

Match:

Some options are disabled and only available for members.