vote up 0 vote down star

How do you split a string e.g. "a:b:c:d" into tokens for parsing in Perl?

(e.g. using split?)

Looking for clear, straightforward answer above all (but do add any interesting tidbits of info afterwards).

flag

4 Answers

vote up 2 vote down check

Yes, split is what you want.

@tokens = split(/:/, "a:b:c:d");
foreach my $token (@tokens) {
    ....
}
link|flag
foreach my $token (@tokens) {} my! my! my :) – nxadm Mar 18 at 19:33
Thanks. I normally use PHP for this stuff :-P – Ryan Graham Mar 18 at 21:09
vote up 2 vote down

Also take a look at the documentation that comes with perl by typing at a command line prompt:

perldoc -f split

To search the FAQs use

perldoc -q split
link|flag
vote up 2 vote down

if you have:

$a = "a:b:c:d";
@b = split /:/, $a;

then you get:

@b = ("a", "b", "c", "d")

In general, this is how split works:

split /PATTERN/,EXPR

Where PATTERN can be pretty much regex. You're not limited to simple tokens like ':'

link|flag
vote up 7 vote down

You can use split. You can also use it with a regex.


my @tokens = split(/:/,$string);

For more advanced parsing, I recommend Parse::RecDescent

link|flag
Note that split() also takes a string as the first parameter, which is more effecient in the cases like this where it's just a simple string. split(':', $string) – mpeters Mar 18 at 20:22
@mpeters: No, it is still a regex. try split ".", "ab.cd"; "." matches any character. And using the string " " consisting of a single space is a special case, which does not mean "match a single space" – runrig Mar 18 at 20:36
@mpeters: What split lets you do is use quotes (single or double) for regex delimiters without the preceding "m" as the usual regex operator. – runrig Mar 18 at 20:39
V good and simple, going to take the foreach answer as that's very handy for beginners. – Anthony Mar 19 at 15:02

Your Answer

Get an OpenID
or

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