Re: simplest of simple web servers

2007-11-06 Thread Willy West
ore active. Thank you, each of you who responded. -- Willy -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

simplest of simple web servers

2007-11-06 Thread Willy West
actually a webserver in a USB key would be fun :) I figured that I'd come here to see which directions I could go to start off and where I should avoid going. thank you much -- Willy -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: regex: working with parts of strings several times over..

2005-06-20 Thread Willy West
) >}{<$1>$2}xg; aah... this is a very useful part of regular expressions that i've never used nor understood untill now :)thank you very much for the help in figuring this out. i'll go off and play with this right now :) -- Willy http://www.hackswell.com/corenth -- To un

regex: working with parts of strings several times over..

2005-06-20 Thread Willy West
here is the original: willy needs to take a nap [EMAIL PROTECTED] here is the result that I want: willy needs to take a nap [EMAIL PROTECTED] if i have the whole thing in one variable $data, then $data =~ s

Re: Counting Multiple lines of data with a unique column of information

2005-03-08 Thread Willy West
forgot to reply to all for the following *laugh* -- Forwarded message -- From: Willy West <[EMAIL PROTECTED]> Date: Tue, 8 Mar 2005 19:20:24 -0500 Subject: Re: Counting Multiple lines of data with a unique column of information To: "Wilson, Josh --- Systems Ana

Re: Another regular expression matching quandry

2004-12-07 Thread Willy West
x27; otherwise that should match ANY string . '.' referes to any character (if i recall correctly) in a regex. actually, i'm surprised that it didn't remove /all/ files from the list- maybe I'm wrong somewhere here? > Thanks so much! > > Jeffrey Paul Burg

Re: How to remove new line chars

2004-10-21 Thread Willy West
have a look at this one. > > please guide me some good stuff abut regex in perl . look up chomp() a non-regex way to take care of pesky \n characters :) -- Willy http://www.hackswell.com/corenth -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: counting gaps in sequence data

2004-10-14 Thread Willy West
fundamentally Perl in nature- he may use the information for bio-informatics, but he is looking for an answer regarding effective Perl use when dealing with strings- that's classic Perl and a classic question for this list :) i wish i could answer his question right off the bat, but i can&#x

Re: counting gaps in sequence data

2004-10-14 Thread Willy West
l Unmoderated list for general discussion of bioperl modules, current & future efforts and related topics. - in the latter of the two lists, i counted about 80 messages in the first half of this month. hmm... i might join it... :) might be fun!! -- Willy http://www.hackswell.com/corenth

Re: emacs and perl

2004-10-14 Thread Willy West
that now... anyway, i like the idea of seeing the script as a whole while testing it. -- Willy http://www.hackswell.com/corenth -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: Passing shell variables to PERL

2004-10-05 Thread Willy Perez
Thanks Errin/Jim/David, Hi Willy, Perl will auto-magically take all of your shell environment variables and put them in a hash: %ENV where the keys are the variable names and the values are the values! so, for your example above, # perl -e 'print "$ENV{ABC}\n"' should

Passing shell variables to PERL

2004-10-05 Thread Willy Perez
Hi, Is there a method to pass a shell assigned variable to perl? For ex: ABC=xyc perl -ne 'print $ABC' In awk you could use ENVIRON["varname"], is there something compatible in perl. Willy Perez Liz Claiborne IT (201) 295-7011

a small script in which a dbm hash fails to work right

2003-01-17 Thread willy
. after a lot of playing around... i think that my dbm syntax is right... so i am just plain confused :( -- thanks :) willy -- Bill Gates is a man who loves EULAs, If you break his contract he'l

dealing with funky characters

2003-01-03 Thread willy
m at some other point in the program- maybe find the use of various unknown tags, or substitute them with html tags that would make the document more legible. (not very worried about that right now though) thank you, willy -- Bill Gates is a man who loves EULAs, If you break his contract

RE: Browser navigation with cgi

2002-03-14 Thread willy wonka
Thank you all that helped. I tried the template thing but was unable to debug the scritp, but thanks to all of you I was able to come up with a perfect soulution that creats a back button and leaves all the info in the form. print ""; print ""; print ""; ps I have never been in a group this hel

Browser navigation with cgi

2002-03-11 Thread willy wonka
Does anyone konw if it is possble to access the goback feature built into the ie5 and netscape throught cgi script. I can use a url in a form action to go back to the page I wan't but the form info on the page is gone. If I use the back button on the browser the info is still there. I am trying