Re: reg exp using \G

2005-08-03 Thread DBSMITH
Please respond to Subject Jay Savage Re: reg exp using \G [EMAIL PROTECTED

reg exp using \G

2005-08-02 Thread DBSMITH
All, I think I am on the right track as far as what assertion to use. I need to print from one string to another using .. with \G My goal is to capture from allsets down. thank you Here is my code: #!/usr/bin/perl use strict; use warnings; $ENV{PATH} = qq(/opt/SUNWsamfs/sbin:/usr/bin); open

Re: reg exp using \G

2005-08-02 Thread Dave Gray
On 8/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I think I am on the right track as far as what assertion to use. I need to print from one string to another using .. with \G Why do you want to use \G? My goal is to capture from allsets down. Here is my code: #!/usr/bin/perl use

Re: reg exp using \G

2005-08-02 Thread DBSMITH
Subject Re: reg exp using \G Please respond to Dave Gray

Re: reg exp using \G

2005-08-02 Thread John Doe
[EMAIL PROTECTED] am Dienstag, 2. August 2005 19.36: reg exp using \G Datum: 2.8.05  19:36:44 Von: [EMAIL PROTECTED] An: beginners@perl.org All, I think I am on the right track as far as what assertion to use.  I need to print from one string to another using .. with \G Your boss

Re: reg exp using \G

2005-08-02 Thread Dave Gray
On 8/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: technically you are correct about escaping the dot, but in this particular situation my regexp is working. I will escape the dot. my goal again is to print from one sting to another from allsets down. I apologize for the long output

Re: reg exp using \G

2005-08-02 Thread DBSMITH
Subject Re: reg exp using \G Please respond to Dave Gray

Re: reg exp using \G

2005-08-02 Thread Dave Gray
On 8/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: yes but the problem is my start point and end point have identical entries under them. It is stopping at original1.1 when I need for it to stop at the end of original1.1 and print media: sf Volumes: STK000 Total space available:

Re: reg exp using \G

2005-08-02 Thread Dave Gray
On 8/2/05, Dave Gray [EMAIL PROTECTED] wrote: On 8/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: yes but the problem is my start point and end point have identical entries under them. It is stopping at original1.1 when I need for it to stop at the end of original1.1 and print media:

Re: reg exp using \G

2005-08-02 Thread Jay Savage
Please don't top post. I think you've been asked this before. On 8/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: ok I understand now...thanks, but I tried it and it is still stopping at original1.1 I then modified it to print YE if ($1) but never saw YE in STDOUT. Tha's because