Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: wiki regex reprocessing replacement

by LanX (Saint)
on Feb 15, 2020 at 18:23 UTC ( [id://11112998]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11112998]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-03-28 17:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found