sort

2004-03-25 Thread ewalker
any modules out there that can sort things such as.. BB10, BB1100,BB11. I want it to be in this order. BB10,BB11,BB1100. Thanks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: sort

2004-03-26 Thread ewalker
-Original Message- From: Bob Showalter [mailto:[EMAIL PROTECTED] Sent: Friday, March 26, 2004 12:19 PM To: ewalker; [EMAIL PROTECTED] Subject: RE: sort [EMAIL PROTECTED] wrote: > any modules out there that can sort things such as.. BB10, > BB1100,BB11. I want it to be in this

hash

2004-03-29 Thread ewalker
any ideas on how I can access say all the values of a hash and not care what the keys are? Thanks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: hash

2004-03-29 Thread ewalker
-Original Message- From: James Edward Gray II [mailto:[EMAIL PROTECTED] Sent: Monday, March 29, 2004 3:06 PM To: ewalker Cc: [EMAIL PROTECTED] Subject: Re: hash On Mar 29, 2004, at 4:03 PM, [EMAIL PROTECTED] wrote: > any ideas on how I can access say all the values of a hash and

RE: hash

2004-03-29 Thread ewalker
-Original Message- From: James Edward Gray II [mailto:[EMAIL PROTECTED] Sent: Monday, March 29, 2004 3:06 PM To: ewalker Cc: [EMAIL PROTECTED] Subject: Re: hash On Mar 29, 2004, at 4:03 PM, [EMAIL PROTECTED] wrote: > any ideas on how I can access say all the values of a hash and

RE: hash

2004-03-29 Thread ewalker
-Original Message- From: James Edward Gray II [mailto:[EMAIL PROTECTED] Sent: Monday, March 29, 2004 3:18 PM To: ewalker Cc: [EMAIL PROTECTED] Subject: Re: hash On Mar 29, 2004, at 4:09 PM, [EMAIL PROTECTED] wrote: > James > > Hey, That didn't work I didn't explain

split

2004-03-31 Thread ewalker
Hey if I do split like the line below. What is put in options when there are only 3 . ($hello,$good,$etc,$options) = split /\s/,$line; -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: split

2004-03-31 Thread ewalker
-Original Message- From: John W. Krahn [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 4:03 PM To: [EMAIL PROTECTED] Subject: Re: split [EMAIL PROTECTED] wrote: > > Hey if I do split like the line below. What is put in options when there are only 3 > . > > ($hello,$good,$e

nested parens

2004-04-02 Thread ewalker
Is there a module out there that I can use to parse a text line and return the pieces that are enclosed in paren's? Thanks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: nested parens

2004-04-02 Thread ewalker
thanks -Original Message- From: Randy W. Sims [mailto:[EMAIL PROTECTED] Sent: Friday, April 02, 2004 5:24 PM To: ewalker Cc: [EMAIL PROTECTED] Subject: Re: nested parens [EMAIL PROTECTED] wrote: > Is there a module out there that I can use to parse a text line and return the >

command line options

2004-04-16 Thread ewalker
Hey guys anyone have any examples of how to check options with the Get::Long module. Here is what I used to get the options. I need examples of how to check to see if they entered the correct things or not. &GetOptions('h|usage|help|info', 'p=s', 's=s', 't=s'); Eric Walker -- To unsubscribe

RE: command line options

2004-04-16 Thread ewalker
-Original Message- From: Wiggins d'Anconia [mailto:[EMAIL PROTECTED] Sent: Friday, April 16, 2004 4:59 PM To: ewalker Cc: [EMAIL PROTECTED] Subject: Re: command line options [EMAIL PROTECTED] wrote: > Hey guys anyone have any examples of how to check options with the Get::Lon

Re: /$RE{URI}{HTTP}{-keep}/;

2005-02-15 Thread EWALKER 1016705
On Tuesday 15 February 2005 11:06 am, Brian Volk wrote: > #!/usr/bin/perl >   > use warnings; > use strict; > use Cwd; > use File::Basename; > use Regexp::Common qw /URI/; >   > my $dir = "C:/brian/small"; >  opendir (SM, $dir) or die "Can't open $dir: $!"; >   > my @files = map { "$dir/$_" } grep

Re: Grep or regex

2005-02-16 Thread EWALKER 1016705
On Wednesday 16 February 2005 10:36 am, Tyson Sommer wrote: > I need to iterate over a list of data to extract a line that matches a > pattern that I have set in a variable. Is there any way to use variable > substitution within a regular expression? So far, this is all I have been > able to get to