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).
|
|
|
|
|
|
|
Yes, split is what you want.
|
||||
|
|
|
Also take a look at the documentation that comes with perl by typing at a command line prompt:
To search the FAQs use
|
||
|
|
|
|
if you have:
then you get:
In general, this is how split works:
Where |
||
|
|
|
|
You can use split. You can also use it with a regex.
For more advanced parsing, I recommend Parse::RecDescent |
||||||||
|