http://qs321.pair.com?node_id=160932


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.