Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: perl cgi text area split

by AcidHawk (Vicar)
on Mar 10, 2004 at 06:51 UTC ( [id://335374]=note: print w/replies, xml ) Need Help??


in reply to perl cgi text area split

What are the filenames seperated with. I.e. is there a space between each filename in the textarea?

Let's assume that this is the case. What you need is an array of all the filenames listed in the textarea. You need to read in each line seperated by the \n and then split the line by spaces. I.e.

@line = split/\s/,$line_read_in;
Then you might want to do a
foreach my $filename (@line) { push (@list_of_filenames, $filename) }

HTH
-----
Of all the things I've lost in my life, its my mind I miss the most.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-24 19:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found