Created
September 21, 2010 09:36
-
-
Save dlamichhane/589461 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
when "url" | |
regex = /^(http|https):\/\/[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(([0-9]{1,5})?\/.*)?$/ix | |
test match scenario: | |
http://www.en.hotmail-f.com.np | |
https://www.apple.co.uk | |
http://www.apple.com | |
http://www.apple.com | |
http://w3.apple.tv | |
http://www.apple-apple.com | |
http://www.apple3.com.np | |
http://en.apple.com | |
http://www.apple.co.uk | |
http://aaa.apple.co.uk | |
https://www.apple.com.uk | |
https://w3.apple.tv | |
https://www.apple-apple.com | |
https://www.apple3.com | |
https://en.apple.com | |
https://www.apple.com | |
when "currency" => for USD | |
regex = /^\$?(?:\d+|\d{1,3}(?:,\d{3})*)(?:\.\d{1,2}){0,1}$/ | |
test match scenario:(passed) | |
$1,113,000.00 | |
$3.99 | |
$5,000 | |
$1.0 | |
$22,222,222,222,222,222 | |
$74387498372947387483978934758744329.00 | |
when "number" | |
regex = /^\d{1,3}(\,?\d{3})*$/ | |
test match scenario:(passed) | |
2,468,273,643,872 | |
11111111111111 | |
when "email" | |
regex = /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/i | |
test match scenario:(passed) | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
when "date" | |
regex = /^(1[0-2]|0?[1-9])\/(3[01]|[12][0-9]|0?[1-9])\/(?:[0-9]{2})?[0-9]{2}$/ | |
test match scenario:(passed) | |
Match m/d/yy and mm/dd/yyyy | |
12/03/2010 and 09/4/2010 | |
when "time" | |
regex = /^(([0-1]?[0-9])|([2][0-3])):([0-5]?[0-9])(:([0-5]?[0-9]))?$/ | |
test match scenario:(passsed) | |
hh:mm:ss | |
23:59:59 | |
00:00:00 | |
01:1:1 | |
12:12:12 | |
when "datetme" | |
regex = /^(1[0-2]|0?[1-9])\/(3[01]|[12][0-9]|0?[1-9])\/(?:[0-9]{2})?[0-9]{2}|(([0-1]?[0-9])|([2][0-3])):([0-5]?[0-9])(:([0-5]?[0-9]))?$/ | |
test match scenario:(passed) | |
mm/dd/yyyy+hh:mm:ss | |
12/31/200312:12:12 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment