Re: PDF File

2007-05-25 Thread [EMAIL PROTECTED]
On May 24, 5:59 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > On May 24, 2:22 pm, Alma <[EMAIL PROTECTED]> wrote: > > > Hi All, > > > I need to store the files > > What files? Where are the before you "store" them? > > > in a directory '/home/user/cgi-bin/{today's > > Date} > > I am able to

Re: Passing multiple mixed arguments to subs

2007-05-25 Thread Brad Baxter
On May 24, 5:36 am, [EMAIL PROTECTED] (Ben Edwards) wrote: > I am passing a reference to a hash ($publisher) and a array with an > unknown number of elements (@files). So the call is > > delete_from_publishers( $publisher, @files ) > > Currently the beginning of the sub is:- > > sub remove_files_f

Re: How to split a large string with repeating delimiters into multiple substrings

2007-05-25 Thread Dave Gray
Hi Michael, On 5/23/07, Michael Goopta <[EMAIL PROTECTED]> wrote: How can I split the below string and get the multiple web-addresses in a list: (i.e. the strings between and http://view-preprod.admission.net/abc/mactive/_NJMG_0002029003-01/i-1.JPG?t=tr/m:FitPad/w:199/h:124&t=ts/r:199x199http

Re: How to split a large string with repeating delimiters into multiple substrings

2007-05-25 Thread Tom Allison
How about something like: Assume the string is in $string... my $regex = '\([^\<]+)\<\/upsl\-url\>'; while ($string =~ /$regex/gsm) { print $1,"\n"; } On May 24, 2007, at 1:47 PM, Octavian Rasnita wrote: Or if this string is stored in a file, and if it is very very big and you don't want