split() splits on whitespace by default. so the "\s+/" is optional.
$_ = "3 element array"; @words = split; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] http://learn.perl.org/
split() splits on whitespace by default. so the "\s+/" is optional.
$_ = "3 element array"; @words = split; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] http://learn.perl.org/