Last active
August 16, 2020 08:31
-
-
Save Sande3p/c8b6d6c61c762a81f7e0b98b2070800a to your computer and use it in GitHub Desktop.
Disctionary
This file contains hidden or 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
{ | |
"data": [ | |
{ | |
"expression": "^[0-9]{6}-[0-9pPtTfF][0-9]{3}$", | |
"description":"Matches 123456-1234 | 123456-P234 | 123456-f234", | |
"type": "regEx" | |
}, | |
{ | |
"expression": "^[0-9]{1,3}$", | |
"description": "Matches 000..999", | |
"type": "regEx" | |
}, | |
{ | |
"expression": "^([012]?[0-9]?[0-9]|3[0-5][0-9]|36[0-6])$", | |
"description":"Matches 0 or 000..366", | |
"type": "regEx" | |
}, | |
{ | |
"expression": "^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])$", | |
"description":"Matches 0 or 000..255", | |
"type": "regEx" | |
}, | |
{ | |
"expression": "(?!^0*$)(?!^0*\\.0*$)^\\d{1,10}(\\.\\d{1,2})?$", | |
"description":"Matches 12314 12314.2 12314.32", | |
"type": "regEx" | |
}, | |
{ | |
"expression": "AU21.A6461T2", | |
"description": "Matches AU21.A6461T2", | |
"type": "keyword" | |
}, | |
{ | |
"expression": "SM21.A47D61T2", | |
"description": "Matches AU21.A6461T2", | |
"type": "keyword" | |
}, | |
{ | |
"expression": "WT66.A6461T5", | |
"description": "Matches AU21.A6461T2", | |
"type": "keyword" | |
}, | |
{ | |
"expression": "RM29.A6461T2", | |
"description": "Matches AU21.A6411T2", | |
"type": "keyword" | |
} | |
], | |
"Status": "S" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment