Help for this page

Select Code to Download


  1. or download this
    http://www.google.com
    <a href="http://www.google.com">fail a match here</a>
    
  2. or download this
    <a href="http://www.google.com">http://www.google.com</a>
    <a href="http://www.google.com">fail a match here</a>
    
  3. or download this
    my $text = qq~
    http://www.google.com
    ...
    $text =~ s#(http://[^\s]*)(?!["|<])#<a href="$1">$1</a>#gsi;
    
    print $text;
    
  4. or download this
    s#[^">](http://[\S]*)# <a href="$1">$1</a>#gsi;