107 regular expressions found in this category!
Displaying page
of
pages;
Items to
Title |
Test
Details
Short type
|
Expression |
^(0|[-]{1}([1-9]{1}[0-9]{0,3}|[1-2]{1}[0-9]{1,4}|[3]{1}([0-1]{1}[0-9]{3}|[2]{1}([0-6]{1}[0-9]{2}|[7]{1}([0-5]{1}[0-9]{1}|([6]{1}[0-8]{1})))))|(\+)?([1-9]{1}[0-9]{0,3}|[1-2]{1}[0-9]{1,4}|[3]{1}([0-1]{1}[0-9]{3}|[2]{1}([0-6]{1}[0-9]{2}|[7]{1}([0-5]{1}[0-9]{1}|([6]{1}[0-7]{1}))))))$ |
Description |
Short type, will match a short number from range -32768 to 32767. |
Matches |
-32768 | -10 | 0 | 10 | 32767 |
Non-Matches |
+0 | -0 | -32769 | 32768 |
Author |
Rating:
Not yet rated.
João Batista Neto
|
Title |
Test
Details
Pattern Title
|
Expression |
^(\$\ |\$)?((0|00|[1-9]\d*|([1-9]\d{0,2}(\,\d{3})*))(\.\d{1,4})?|(\.\d{1,4}))$ |
Description |
Allows for a dollar sign with no space after, a dollar sign with a space after, and no dollar sign. Also makes sure theres no more than 4 decimal places. Takes out leading zeros if the number isn't 0, and protects against blank entries. |
Matches |
$ 123.4 | $00.5 | 200,000 |
Non-Matches |
$012,234.44 | -39.05 | $45,23,330.00 |
Author |
Rating:
Not yet rated.
Corey Charlton
|
Title |
Test
Details
Byte type
|
Expression |
^(0|[-]{1}([1-9]{1}[0-9]{0,1}|[1]{1}([0-1]{1}[0-9]{1}|[2]{1}[0-8]{1}))|(\+)?([1-9]{1}[0-9]{0,1}|[1]{1}([0-1]{1}[0-9]{1}|[2]{1}[0-7]{1})))$ |
Description |
Not just a number, a byte type. Will match any number from range -128 to 127. |
Matches |
-128 | 127 | 0 | 1 | -10 |
Non-Matches |
-129 | 128 | -0 | +0 |
Author |
Rating:
Not yet rated.
João Batista Neto
|
Title |
Test
Details
Pattern Title
|
Expression |
^(0)$|^([1-9][0-9]*)$ |
Description |
This regular expression matches on postive whole numbers and 0. Whole numbers that are left padded with 0's are not a match. |
Matches |
12 | 0 | 1200 |
Non-Matches |
-12 | 0012 |
Author |
Rating:
Not yet rated.
T H
|
Title |
Test
Details
Pattern Title
|
Expression |
^\$?\d+(\.(\d{2}))?$ |
Description |
To evaluate an amount with or without a dollar sign where the cents are optional.
|
Matches |
$2.43 | 2.02 | $2112 |
Non-Matches |
2.1 | $.14 | $2,222.12 |
Author |
Rating:
Not yet rated.
Daniel Repaci
|
Title |
Test
Details
Unsigned Short Type
|
Expression |
^(0|(\+)?([1-9]{1}[0-9]{0,3})|([1-5]{1}[0-9]{1,4}|[6]{1}([0-4]{1}[0-9]{3}|[5]{1}([0-4]{1}[0-9]{2}|[5]{1}([0-2]{1}[0-9]{1}|[3]{1}[0-5]{1})))))$ |
Description |
Will match an unsigned short number from range 0 to 65535 |
Matches |
0 | 100 | 65535 |
Non-Matches |
-0 | +0 | -10 | 65536 |
Author |
Rating:
Not yet rated.
João Batista Neto
|
Title |
Test
Details
Int type
|
Expression |
(0|[1-9]{1}[0-9]{0,8}|[1]{1}[0-9]{1,9}|[-]{1}[2]{1}([0]{1}[0-9]{8}|[1]{1}([0-3]{1}[0-9]{7}|[4]{1}([0-6]{1}[0-9]{6}|[7]{1}([0-3]{1}[0-9]{5}|[4]{1}([0-7]{1}[0-9]{4}|[8]{1}([0-2]{1}[0-9]{3}|[3]{1}([0-5]{1}[0-9]{2}|[6]{1}([0-3]{1}[0-9]{1}|[4]{1}[0-8]{1}))))))))|(\+)?[2]{1}([0]{1}[0-9]{8}|[1]{1}([0-3]{1}[0-9]{7}|[4]{1}([0-6]{1}[0-9]{6}|[7]{1}([0-3]{1}[0-9]{5}|[4]{1}([0-7]{1}[0-9]{4}|[8]{1}([0-2]{1}[0-9]{3}|[3]{1}([0-5]{1}[0-9]{2}|[6]{1}([0-3]{1}[0-9]{1}|[4]{1}[0-7]{1}))))))))) |
Description |
Will match any integer from range -2147483648 to 2147483647. |
Matches |
-2147483648 | -100 | 0 | 100 | 2147483647 |
Non-Matches |
-2147483649 | -0 | +0 | 2147483648 |
Author |
Rating:
Not yet rated.
João Batista Neto
|
Displaying page
of
pages;
Items to