If you're trying to remove all \x{92} characters with a regexp, be sure to use the /g modifier. However, if that's your intent, use the transliteration operator instead; that's what it's designed for, and it's more efficient at its job:
$str =~ tr/\x{092}/'/d;
That ought to do the trick.
Dave
In reply to Re: Removing \x092 with a regex
by davido
in thread Removing \x092 with a regex
by wfsp
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |