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.