Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Simple Parsing of string

by plaid (Chaplain)
on May 12, 2000 at 02:16 UTC ( [id://11213]=note: print w/replies, xml ) Need Help??


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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11213]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (2)
As of 2024-04-19 19:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found