Help for this page

Select Code to Download


  1. or download this
    [xyz]level 1.1[/xyz]
    [xyz]level 1.2[/xyz]
    
  2. or download this
    <table><tr><td>level 1.1</td></tr></table>
    <table><tr><td>level 1.2</td></tr></table>
    
  3. or download this
    [xyz]level 1.1 [xyz]level 2.1[/xyz] rest of 1.1 [/xyz]
    
  4. or download this
    <table><tr><td>level 1.1 <table><tr><td>level 2.1</td></tr></table>res
    +t of 1.1 </td></tr></table>
    
  5. or download this
    [xyz] error [xyz] level 1.1 [xyz] level 2.1 [/xyz] [/xyz]
    [xyz] level 1.2 [/xyz]
    
  6. or download this
    [xyz] error <table><tr><td>level 1.1 <table><tr><td>level 2.1 </td></t
    +r></table> </td></tr></table>
    <table><tr><td>level 1.2 </td></tr></table>
    
  7. or download this
    while ($string =~ s/
      \[xyz\] 
    ...
      /
      "<table><tr><td>$1</td></tr></table>"
      /gsiex;
    
  8. or download this
        while ($string =~ s/
        (\[\Q$tag\E\])
    ...
        /gsiex) {
        1; # do nothing
        }