Other Resources:
Validating GUID or UUID
How to write a regular expression to validate GUID (Globally Unique IDentifier) or UUID (Universally Unique IDentifier)?
Here is a list of good and bad GUID examples:
✍: FYIcenter.com
Here is a regular expression to parse file entries from output of the "dir" command on Windows systems: with multiple lines and ignore case modifiers "mi": Note that:
[0-9A-F]{8} - 8 hexadecimal digits
2022-10-01, 0👍, 2💬
Popular Posts:
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
How to write a regular expression to parse key-value entries from Windows .INI files? Here is an exa...
According to the IEEE 802 specification, a MAC address has 6 groups of 2 hexadecimal digits separate...
How to write a regular expression to parse key-value entries from Windows .INI files? Here is an exa...
Are you having problems using regular expressions when processing text strings in your applications ...