Changes for version 1.03 - 2026-05-19
- Fix Windows case-insensitivity issue in MANIFEST.
- Ensure lib/Tstregex.pm is properly indexed with capital T.
- Fix the stubs for windows and Linux
Documentation
Modules
A Hybrid Regex Diagnostic Tool (single file Library module and command tool) shows the longest Regular Expression match / highlight the rejected part Example: $ perl lib/Tstregex.pm '/^[a-z]*\d{3}$/' 'abc123' 'abc12a' abc123 abc12a (^[a-z]*\d{3}$)