in reply to Re: help on searching a file
in thread help on searching a file
To be explicit that + in the regexp in the split is in an invalid position.$ perl -w -e 'print split(/+\|/, $result);' /+\|/: ?+*{} follows nothing in regexp at -e line 1.
This is probably a cut and paste problem since a program with that construct in wouldn't even compile...
|
|---|