I want to do this in Perl:
>> "foo bar baz".scan /(\w+)/
=> [["foo"], ["bar"], ["baz"]]
Any suggestions?
|
|
|||
|
|
|
This does essentially the same thing.
You can also set the "default scalar" variable
See If you only want to use that string as an array, you could use
|
||||||
|
|
|
Also, split, e.g.,
OR
etc. |
||||||||||||||
|