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.
Comment on
Re: Problem splitting a string that contains ^I
Download
Code
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.
[reply]
In Section
Seekers of Perl Wisdom