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
New Page 1< i'd like to know another way to do it, or another approach to reading the info from the databse file If I read you correctly, your datafile starts with : and ends with ø , therefore your data file would look like this :- :This is the first dataø :This is the second dataø :This is

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