in reply to Re: Re: Assigning scalar to each field in a flat file database
in thread Assigning scalar to each field in a flat file database

Well you kinda missed/ignored the code i posted. The split function takes a regular expression /PATTERN/ and in a // the character '|' is an 'or'. So use /\|/ instead.
@array = split(/\|/, $_);
That should help you out a little more.

-bn
  • Comment on Re: Re: Re: Assigning scalar to each field in a flat file database
  • Download Code