in reply to Re^5: cleaving a sequence with specific alphabets
in thread cleaving a sequence with specific alphabets

Oh well, I made a mistake (better really test the code next time).

I couldn't come up with a solution dropping the .*?, so Tachyon-II's solution only needs a slight modification ...

... my @arr = $string =~ / .*? [KR] (?!P) | [^KR]+$ /gx; ...

... for getting the strings tail.

Thanks for checking this!

Regards

mwa

Replies are listed 'Best First'.
Re^7: cleaving a sequence with specific alphabets
by tachyon-II (Chaplain) on May 22, 2008 at 00:04 UTC

    That'll learn me ;-) Testing OPs code and not my own! Thanks for fixing it and pointing out you don't need the ( ).

    cheers