I want to use the perl module re::engine::TRE in my perl script for fuzzy matching, but not for all the regex's in the script, only for certain regex's.
re::engine::TRE brings in a different regex engine than the Perl default. But, I want the default regex engine for some of the regex's in the script and re::engine::TRE for other regex's.
What would be the best way of going about to do this ?
A question more suitable for Perlmonks perhaps.