Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Problem splitting a string that contains ^I

by dws (Chancellor)
on Apr 21, 2002 at 21:38 UTC ( [id://160932]=note: print w/replies, xml ) Need Help??


in reply to Problem splitting a string that contains ^I

The tab (^I) characters is represented in Perl strings via \t. Thus   @parts = split "\t", $string; will separate tab-delimited parts.

Replies are listed 'Best First'.
Re: Re: Problem splitting a string that contains ^I
by Anonymous Monk on Apr 21, 2002 at 23:56 UTC
    split with '\t' has helped me. Thank you very much.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (5)
As of 2024-04-25 14:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found