in reply to Re: Split without removing characters
in thread Split without removing characters

__OUTPUT__ Hello World Foo Bar Perl Monks Slash Dot
although
for ($foo) { for (/[A-Z][a-z]+(?:\s[A-Z][a-z]+)+/g) { print "$_ \n"; } }
would work.