Rance Hall wrote:
> here is the prelim setup:
>
> my $delimiter = ";;;";
> my $teststring = "name;;;encryptedpassword;;;date";
>
> my @userdetails = split($delimiter, $teststring);
>
> here is the goal:
>
> I would like to find a delimiter value that I can use to both create and
> read from a f
On Fri, 2006-28-04 at 14:16 -0500, Rance Hall wrote:
> here is the prelim setup:
>
> my $delimiter = ";;;";
> my $teststring = "name;;;encryptedpassword;;;date";
>
> my @userdetails = split($delimiter, $teststring);
>
> here is the goal:
>
> I would like to find a delimiter value that I can use