in reply to Re: Regexp help, multiple lines
in thread Regexp help, multiple lines

Hi! thanks for really fast answers, I had some not complete informations in my question, so I updated it. Maybe I should first collect all 'Paragraph' names into array and after them create such regexp ?
I did know .. and ... operators, but it is nearly same as (.*), it doesn't help here. My regexp should looks like
 /^ {5}\S[^:]+:$\s+([^ {5}\S])/ism
but ofcourse  '[^ {5}\S]' doesn't work, we know why...:(

Replies are listed 'Best First'.
Re^3: Regexp help, multiple lines
by CombatSquirrel (Hermit) on Aug 16, 2004 at 05:34 UTC
    You might want to use something like this
    #!perl use strict; use warnings; my $paragraph = 0; for (<DATA>) { do { ++$paragraph; next; last if $paragraph > 2 } if substr($_, 5, 1) ne ' '; print if $paragraph == 2; } __DATA__ Paragraph1: text Paragraph2: text1 text2 text3 Paragraph3: text
    Hope this helped.
    CombatSquirrel.

    Entropy is the tendency of everything going to hell.
      here is solution, which help me, combining all of your answers, I know name of start Paragraph, but don't know name of end Paragraph, so...THANKS (sorry for mess in replies):

      #!perl use strict; use warnings; my $para = 'Paragraph2:'; while (<DATA>) { print if (/^ {5}$para:?\s*$/i ... /^ {5}\S/ and /^ {7}/) } __DATA__ Paragraph1: text11 Paragraph2: text21 text22 text23 Paragraph3: text31