in reply to Re: Regex Help
in thread Regex Help
This will print one character and its ascii decimal code per line (of course this will also output a newline as a newline, so the output isn't very pretty)@chars=split //, $string; for(@chars) { print $_ . " " . ord($_) . "\n"; }
|
|---|