Re: Parsing JIS X 0208 & Shift JIS with 5.8.0 +++++Success

2002-10-02 Thread Robin
I'm cross posting this to the perl unicode list because the pods say they might be interested in my dopey luser feedback, well actually not with those words they don't :-). The process by which I arrived at the solution might seem painful to some, but I'm listing it here in case anyone else is/

Re: Parsing JIS X 0208 & Shift JIS with 5.8.0

2002-10-02 Thread Joel Rees
Robin explained: > First off - I didn't post specifics because I wasn't sure that it might > be of interest to the OSX perl comunity as a whole, I hoped to get the > interested parties emailing me privately, but then again the total > scarcity of docs (that I could find in English) regarding th

Re: Parsing JIS X 0208 & Shift JIS with 5.8.0

2002-10-01 Thread Robin
First off - I didn't post specifics because I wasn't sure that it might be of interest to the OSX perl comunity as a whole, I hoped to get the interested parties emailing me privately, but then again the total scarcity of docs (that I could find in English) regarding this topic on the net, mean

Re: Parsing JIS X 0208 & Shift JIS with 5.8.0

2002-10-01 Thread Dan Kogai
On Tuesday, Oct 1, 2002, at 18:47 Asia/Tokyo, Dan Kogai wrote: > my $utf8 = decode('shift-jis', $string/; my $utf8 = decode('shift-jis', $string); # of course. .I need to get to bed, which I have not for last couple of Earth rotation Dan the Insomniac

Re: Parsing JIS X 0208 & Shift JIS with 5.8.0

2002-10-01 Thread Dan Kogai
On Tuesday, Oct 1, 2002, at 18:16 Asia/Tokyo, Robin wrote: > Is anyone else doing/done this? Care to share notes? Too brief a comment to grok what your point is. If all you need is (en|de)code Shift_JIS, all you have to do is; use Encode qw/encode decode/; #... my $utf8 = decode('shift

Re: Parsing JIS X 0208 & Shift JIS with 5.8.0

2002-10-01 Thread Joel Rees
> Is anyone else doing/done this? Care to share notes? Has something changed? How was it before? -- Joel Rees <[EMAIL PROTECTED]>

Parsing JIS X 0208 & Shift JIS with 5.8.0

2002-10-01 Thread Robin
Is anyone else doing/done this? Care to share notes? Robin