in reply to Simple Parsing of string

I'm not sure if I am understanding your question correctly, but it seems like you're just looking for a way to split the '+' delimited query string into an array? If this is the case, all you'd need to do is
my @job_ids = split(/\+/, $ENV{'QUERY_STRING'});
Then, you can do database queries, create text links, etc., on each of the @job_ids. Let me know if I'm grossly misunderstanding your question.

Replies are listed 'Best First'.
RE: Re: Simple Parsing of string
by dominica1000 (Initiate) on May 12, 2000 at 02:31 UTC
    Yes, this is exactly what I needed. Thanks.