Scott Batchelor wrote: > > Ok thanks wags...that explains it. > > Now don't flame me hehe but... > > $value =~ s/\+/ /g; is saying substitute any "+" with a space...right?
Yes but more experienced Perl programmers would write that as: $value =~ tr/+/ /; John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]