in reply to Re^3: using split
in thread using split
The reply I provided above demonstrates that the perl parser sees the two statements as equivalent. Here is an example that proves the behaviour:
> perl -le "print for @cols = split('|', 'ab|c');" a b | c
|
|---|