in reply to Cleaning Data Between Specified Columns
You can use the fact that the return value from substr() is an lvalue and do something like:
{ local *tmp = \substr( $source, $start, $len ); $tmp =~ y/'//d; $tmp =~ y/a-zA-Z0-9\n\|-/ /c; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Cleaning Data Between Specified Columns
by Aristotle (Chancellor) on Jan 28, 2003 at 01:51 UTC |