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);