Forked from JoshuaCarroll/gist:f6b2c64992dfe23feed49a117f5d1a43
Created
June 4, 2021 18:14
-
-
Save p34eu/548444878d6985fb9ebfb052703d3de8 to your computer and use it in GitHub Desktop.
Regular expression (regex) for non-US amateur radio call signs
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
All amateur radio call signs: | |
[a-zA-Z0-9]{1,3}[0123456789][a-zA-Z0-9]{0,3}[a-zA-Z] | |
Non-US call signs: | |
\b(?!K)(?!k)(?!N)(?!n)(?!W)(?!w)(?!A[A-L])(?!a[a-l])[a-zA-Z0-9][a-zA-Z0-9]?[a-zA-Z0-9]?[0123456789][a-zA-Z0-9][a-zA-Z0-9]?[a-zA-Z0-9]?[a-zA-Z0-9]?\b | |
US call signs: | |
[AKNWaknw][a-zA-Z]{0,2}[0123456789][a-zA-Z]{1,3} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment