|
Posted by Gunnar Hjalmarsson on March 14, 2008, 9:22 pm
Please log in for more thread options
Ela wrote:
> \t matches BOTH tab and space.
No, it doesn't.
> How can I split the following line into 2 words instead of 5?
>
> 1234\tI am a boy\n
split /\t/, "1234\tI am a boy\n"
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
|