http://qs321.pair.com?node_id=11112998


in reply to Re: wiki regex reprocessing replacement
in thread wiki regex reprocessing replacement

ah yes \K not \G I keep confusing them.

And I thought that $1 and $2 are read-only ... ah I see you use the /r flag.

anyway, markup should be paired.°

my $wiki = '_one*'; my $expected = $wiki; $html = $wiki =~ s{ (?:^|\s) \K ([*_/]+) | ([*_/]*) (?=$|\s) } { $1 ? $1 =~ s|.|<$h{$&}>|gr : $2 =~ s|.|</$h{$&}>|gr }gexr; print $html eq $expected ? "passed" : "FAILED", "\n\n"; print $wiki, "\n\n", $expected, "\n\n", $html, "\n";

FAILED _one* _one* <u>one</b>

I've updated the tests in Re: wiki regex reprocessing replacement (UPDATED^2) with markup to ignore

Funny enough, the monastery fails too :)

FAILED

_one*

_one*

one  

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

°) yes I know, wasn't explicitely tested

Replies are listed 'Best First'.
Re^3: wiki regex reprocessing replacement
by tybalt89 (Monsignor) on Feb 15, 2020 at 18:52 UTC

    Let it fail, it should be obvious in the preview.

    hehehe

      oh ... I've expected more from you, followed with a "that was fun" ... ;-(

      Cheers Rolf
      (addicted to the Perl Programming Language :)
      Wikisyntax for the Monastery