On Wednesday, April 17, 2002, at 05:05 , Scott Lutz wrote:

> I am trying to do a split on a string with what looks like square boxes
> separating the data.

is this something that you are getting from a 'unicode' site?

The normal case is that it is something in the non-printable
section of 8-bit ascii....

> Is this a tab?

probably not - what you might want to use if you have
the 'string of data' in a file is an

        od -x filename

cf man od or hexdump....

> I was trying to find an ASCII value for this to split on it, but can't
> find one.
> Any ideas?
>
> Scott Lutz


you might want to peek at it with a

        printf(" funny box is: %x \n", ord($char));

cf perldoc perlfunc

cf man ascii

if that returns a value above 7F then it is an 8-bit problem child.
But at least you would know it's 'ASCII' value...

ciao
drieux

---


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

Reply via email to