in reply to Re^6: Listing out the characters included in a character class [v5.38]
in thread Listing out the characters included in a character class
The module code you show in your scratchpad starts with:
package Regexp::CharClasses::Thai;
but your script (above) has:
use RegexpCharClassesThai; #Regexp-CharClasses-Thai.pm
There's a naming mismatch. Assuming at least one of those is correct, you should have one of these three combinations:
package Regexp::CharClasses::Thai; use Regexp::CharClasses::Thai; # Regexp/CharClasses/Thai.pm package RegexpCharClassesThai; use RegexpCharClassesThai; # RegexpCharClassesThai.pm package Regexp-CharClasses-Thai; use Regexp-CharClasses-Thai; # Regexp-CharClasses-Thai.pm
Of course, it's possible all of those are incorrect and you should have a fourth combination.
— Ken
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: Listing out the characters included in a character class [naming mismatch]
by Corion (Patriarch) on Oct 31, 2023 at 14:46 UTC | |
|
Re^8: Listing out the characters included in a character class [naming mismatch]
by Polyglot (Chaplain) on Nov 01, 2023 at 07:26 UTC |