On Apr 16, jon shoberg said:
> How do I go about removing characters from a string that are not
>alpha-numeric, a question-mark, < character, or > character ?
You'd probably want to use the tr/// operator.
$string =~ tr/a-zA-Z0-9?<>//cd;
That'll remove all characters that are not a-z, A-Z,
How do I go about removing characters from a string that are not
alpha-numeric, a question-mark, < character, or > character ?
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]