Help for this page

Select Code to Download


  1. or download this
    s/href=([^"\s>]+)/href="$1"/g
  2. or download this
    <a href="http://www.google.com/">Google</a> uses .html files.
  3. or download this
    s/(href="[^"]*)\.html"/$1.asp"/g
    s/(href="http://[^"]*)\.asp"/$1.html"/g
    
  4. or download this
    s{(href="[^"]*\.html")}{
        my $s= $1;
        $s =~ s#\.html"$#.asp"#
            unless  $s =~ m#^http:#;
        $s
    }ge;