in reply to Re: strip until blank line
in thread strip until blank line

Says lemming:
> last if (/^+s$/);
>
> Whoops! Must learn to test.
I think you still need to learn to test. That line matches the strings "s", "s\n", and nothing else.

Maybe you wanted last if /^\s*$/. But I would have written last unless /\S/ instead.