Re: splitting text that contains an encrypted value

2006-04-28 Thread John W. Krahn
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

Re: splitting text that contains an encrypted value

2006-04-28 Thread Mr. Shawn H. Corey
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