http://www.perlmonks.org?node_id=533386


in reply to Simple regular expression that isn't simple

you should try something simpler (untested):
$seqs =~ /^(>.*)>/ms
Enjoy,
Mickey

Replies are listed 'Best First'.
Re^2: Simple regular expression that isn't simple
by QM (Parson) on Feb 28, 2006 at 18:10 UTC
    $seqs =~ /^(>.*)>/ms
    This will grab everything from the start of the string (assuming the string starts with >, upto but not including the last >.

    While technically correct, reading between the lines the OP probably wants to grab the data in chunks that start with >. (Otherwise, substr would have been a better choice, no?).

    You have to make the * non-greedy. Better to just use a negated character class...

    I see that davorg's suggestion is what I was heading for..

    -QM
    --
    Quantum Mechanics: The dreams stuff is made of