Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #25

Merged
merged 1 commit into from
Oct 29, 2024
Merged

fix #25

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions regexList/Mac-Address.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"title": "MAC Address - آدرس مک سیستم",
"description": "این آدرس از 6 بخش شامل عدد و حرف (هگزادسیمال) تشکیل شده و با : این موارد از هم جدا شده است یا به هم چسبیده هستند",
"regex": "^(?:[0-9A-f]{2}[:]?){6}(?<![:])$",
"passTest": [
"AA:BB:CC:DD:EE:FF",
"4A:1B:CC:D5:EE:F2",
"AABBCCDDEEFF",
"4AB2C9D7EE1F"
],
"rejectTest": [
"AA:BB:CC:DD:EE:FF-",
"AA:BB:CC:DD:EE:FF:",
"AA-BB-CC-DD-EE-FF",
"AA:BB-CC:DD-EE:FF",
"AA-BB-CC-DD-EE-GG",
"AAGG",
"AA1111GG",
"AA:GG",
"AA.BB.CC.DD.EE.FF"
]
}
Loading