: Text::CSV problem
Nevermind ... found it on google:
s/\013//gs;
Thanks for the tip on od & "vertical tab"
Now I got other characters to chase down! ;)
Jason "lovin' CSV right now ;)" Purdy
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
mail)
> > between `"OTHER` and the closing `"`. I am guessing that something like
> > s/\cV// or s/\cv// should do the trick.
> >
> > -Original Message-
> > From: Jason Purdy [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, January 25, 2002 2:50 PM
&
that something like
> s/\cV// or s/\cv// should do the trick.
>
> -Original Message-
> From: Jason Purdy [mailto:[EMAIL PROTECTED]]
> Sent: Friday, January 25, 2002 2:50 PM
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: Re: Text::CSV problem
>
>
>
> That
---
From: Jason Purdy [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 25, 2002 2:50 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: Text::CSV problem
That's a cool tip - thanks! Now when looking at the file, I see this:
$ od -c oldfile3.csv |more
100 O N E L
That's a cool tip - thanks! Now when looking at the file, I see this:
$ od -c oldfile3.csv |more
100 O N E L B R A I D Z E N 1 9
120 6 1 \v 7 0 7 O F F I C E " , "
What the heck is a "\v"? When I tried to s
you can use the Unix command `od -c `, which will give you an
octal dump in character mode of the file. This will tell you what characters
are where in the file.
-Original Message-
From: Jason Purdy [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 25, 2002 2:25 PM
To: [EMAIL PROTECTED]
S