Hi again ;)

>From subject:

Split input on whitespaces - Another approach

Code sample:

foreach (split /\s+/, $line) {

Answering question of subject line:

foreach ($line =~ /\s+/g) {


Just to make sure you really do have "Another approach"!

Jonathan Paton

__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to