Hi.
I got a string which has different words split up by pipeline characters ("|"). The number of words is totally variable.
So, for example at a point my string has the following values "a|b|c|d|e".
How can I tell Perl to get each word split by the pipechars and push them into a list(array)? Remember that the number of words in the string (split by pipes) can be any. It's not a fixed one.