I recently had a similar problem, but I took the lazy man's way out and
substituted user-typed apostrophes with back quotes, using the following
regexp:

$message =~ s/'/`/g;

Simple, but few people notice the difference between the two characters.

Steven Yarbrough


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to