Re: transforming an array of characters into 1 single string

2001-11-10 Thread Curtis Poe
> #!d:\perl\bin\perl.exe -w > use CGI::Carp (fatalsToBrowser); > > # Get the input > read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); > > # Split the name-value pairs > @pairs = split(/&/, $buffer); > > foreach $pair (@pairs) { > ($name, $value) = split(/=/, $pair); > > # Un-Webify plus signs

Re: transforming an array of characters into 1 single string

2001-11-10 Thread eventualdeath
From: "samuel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, November 11, 2001 2:26 AM Subject: transforming an array of characters into 1 single string Hi there!, i'm developing a basic data base tool. the "search engine" i'm trying to imlpeme

Re: transforming an array of characters into 1 single string

2001-11-10 Thread Jonathan E. Paton
Hi, > I'm developing a basic data base tool. The "search > engine" I'm trying to impliement will read single > characters from the source file (where data is stored > in :dataø format). I assign every single character > between the start ':' marker to the end 'ø' marker. > Then, I try to turn t

transforming an array of characters into 1 single string

2001-11-10 Thread samuel
Hi there!, i'm developing a basic data base tool. the "search engine" i'm trying to imlpement will read single characters from the source file (where data is stored in :dataø format). i asign every single character betwwen the start ':' marker to the end 'ø' marker. then, i try to turn the array o