in reply to Re^4: Disable Regex
in thread Disable Regex
You might like the __DATA__ section:
use strict; use warnings; foreach (<DATA>) { chomp; print "$_\n";; } __DATA__ illegal\characters*example? ab\delta.txt ab*delta.txt
Which produces
illegal\characters*example? ab\delta.txt ab*delta.txt
|
|---|