in reply to Re: Replacing left angle bracket with HTML entity when between two backtick characters
in thread Replacing left angle bracket with HTML entity when between two backtick characters

Proposed solution above won't work so well on a string like `this <string> ` that begins and ends with backticks. Edit: I can make the LIMIT argument -1 to get this to work.

$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot Bishop Pontiff Deacon Curate Priest";
$nysus = $PM . ' ' . $MCF;
Click here if you love Perl Monks

  • Comment on Re^2: Replacing left angle bracket with HTML entity when between two backtick characters
  • Download Code