I would like to use Perl's split
functionality to do the following:
example string:
=foo>bar=\foo2>bar2=foo3> ...
Now I tried this:
@Array = split /=.*>/, $string
I'm expecting to get my array filled with "bar", "bar2", ...
Any idea what I'm doing wrong?