Re: replacing special characters

2002-04-16 Thread Jeff 'japhy' Pinyan
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,

replacing special characters

2002-04-15 Thread jon shoberg
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]