in reply to
Splitting on + after using Text::Diff
The first param to split is a regexp, so you have to scape the + so it doesn't act as a quantifier:
my $unequal = split(/\+/, $diff);
[download]
Comment on
Re: Splitting on + after using Text::Diff
Download
Code
In Section
Seekers of Perl Wisdom