Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^5: This looks like whitespace in my CSV but doesn't seem to be

by Anonymous Monk
on Sep 30, 2012 at 09:35 UTC ( [id://996486]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    space => [\u0009-\u000D\u0020\u0085\u00A0\u1680\u180E\u2000-\u200A\u20
    +28-\u2029\u202F\u205F\u3000]
    
  2. or download this
    $ perl -pe " s{\\u(....)}{\\x{$1}}g "
    [\u0009-\u000D\u0020\u0085\u00A0\u1680\u180E\u2000-\u200A\u2028-\u2029
    +\u202F\u205F\u3000]
    [\x{0009}-\x{000D}\x{0020}\x{0085}\x{00A0}\x{1680}\x{180E}\x{2000}-\x{
    +200A}\x{2028}-\x{2029}\x{202F}\x{205F}\x{3000}]
    
  3. or download this
    #!/usr/bin/perl --
    use warnings;use strict;
    ...
    __END__
    ["\xA01.00"]
    ["1.00"]
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://996486]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-23 15:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found