Help for this page

Select Code to Download


  1. or download this
    my $text = "Here is [id=327]a very cool document[/id] for you";
    $text =~ /\[id=([0-9]*)\](.*)\[\/id\]/i;
    ...
    my $after = $';
    
    print "$before$tag$after\n";
    
  2. or download this
    Here is <A HREF="/cgi-bin/coolcode.pl?id=327">a very cool document</A>
    + for you