-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from majidh1/sheba
add sheba regex
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"title": "بررسی شماره شبا IBAN", | ||
"description": "شماره شبا بانکی ایران با IR شروع میشود و 24 رقم عددی دارد و هیچ حرف انگلیسی یا فارسی دیگری در آن به کار نمیرود", | ||
"regex": "IR[0-9]{24}", | ||
"passTest": [ | ||
"IR123456789012345678901234", | ||
"IR987654321123564878955752" | ||
], | ||
"rejectTest": [ | ||
"123456789012345678901234", | ||
"IR12345678901234567890123", | ||
"I.R12345678901234567890123", | ||
"IR", | ||
"ir", | ||
"ir123456789012345678901234" | ||
] | ||
} |