in reply to Split this string

Is there a reason for not using the following?
@array = split /\s/, $string, 2;
This will only split on the first whitespace and will ignore any other whitespace. I.E. you'll only get at most two elements from the split.

Replies are listed 'Best First'.
Re^2: Split this string
by Anonymous Monk on Oct 12, 2011 at 13:01 UTC
    count the equals signs, that is how many pairs of data exist