Page 1 of 1

Removing all characters but alphanumeric

Posted: Mon Jun 25, 2007 11:21 am
by ds_debasis
Removing all characters but alphanumeric (i.e. [A-Z] [a-z] [0-9]) from input strings. This string is coming from a comma separated sequential file. And I need to remove it from only one column.

Thanks
Debasis

Posted: Mon Jun 25, 2007 12:21 pm
by ray.wurlod
Welcome aboard. :D

There's nothing out of the box to perform this particular task in parallel jobs. It's probably easiest to use something like an External Filter stage invoking tr sed or awk to perform the parsing.

Posted: Mon Jun 25, 2007 12:32 pm
by ds_debasis
ray.wurlod wrote:Welcome aboard. :D

There's nothing out of the box to perform this particular task in parallel jobs. It's probably easiest to use something like an External Filter stage invoking tr sed ...


Thanks Ray
It was a quick reply. Let me try to filter it in unix .

Thanks again
Debasis