vote up 2 vote down star

I want to do this in Perl:

>> "foo bar baz".scan /(\w+)/
=> [["foo"], ["bar"], ["baz"]]

Any suggestions?

flag
This is intended to accomodate a general regular expression, separated by arbitrary other characters. – klochner Aug 8 at 1:41

2 Answers

vote up 10 vote down check

This does essentially the same thing.

my @elem = "foo bar baz" =~ /(\w+)/g

You can also set the "default scalar" variable $_.

$_ = "foo bar baz";
my @elem = /(\w+)/g;

See perldoc perlre for more information.


If you only want to use that string as an array, you could use qw().

my @elem = qw"foo bar baz";

See perldoc perlop ​ ​( Quote and Quote-like Operators ).

link|flag
4  
IMHO, explicit assignment to $_ merely to use one of Perl's implicit $_ idioms awkwardly misses the point of that idiomatic shorthand. – pilcrow Aug 8 at 2:21
I know, I want to expand on that part of the answer, to show where it would be useful. – Brad Gilbert Aug 8 at 2:40
vote up 3 vote down

Also, split, e.g.,

my $x = "foo bar baz";
my @elem = split(' ', $x);

OR

my @elem = split(/\w+/, $x);

etc.

link|flag
I think you mean "split /(\w+)/ ..." – Brad Gilbert Aug 8 at 0:39
3  
split ' ', $x is unsatisfactory if there may be \W characters (other than \s) in the string. split /(\w+)/, $x will give you ('', 'foo', ' ', 'bar', ' ', 'baz') making this a pointless exercise. – Sinan Ünür Aug 8 at 1:05
1  
Sinan is right, I looked at using split and it isn't right for this purpose. I just want an array of elements matching the regex. – klochner Aug 8 at 1:40
You're correct that split(' ',...) is unsatisfactory in more complex cases. It will work for the trivial case presented. Thanks for catching the gaff on split(/\w+/). I'm the complement of the OP, where I don't know Ruby but know perl, and misunderstood scan's functionality. – Chris Cleeland Aug 9 at 2:59
split /\W+/, 'foo bar baz' gives 'foo', 'bar', 'baz' as requested – larelogio Aug 10 at 14:13
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.