On 9/25/06, Michael Alipio <[EMAIL PROTECTED]> wrote:

I have several files with \xa0 characters.. Do you
know how can I remove them?

Those sound like non-breaking spaces, so you probably want them to
become ordinary spaces. Have you tried using s/// or tr/// ?

   perl -pi.bak -e 'tr/\xa0/ /' files*.txt

Hope this helps!

--Tom Phoenix
Stonehenge Perl Training

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to