Help for this page

Select Code to Download


  1. or download this
    anfnf11
    iopi1p83288
    9032-jjjf
    
  2. or download this
    i have <a href="http://www.somewhere.org/foo/">a link</a> and <a href=
    +https://somewhere.else.net/bar/>the second link</a>.
    
  3. or download this
    <body>this is <a href="http://www.somewhere.org/foo/anfnf11">a link</a
    +> and <a href=https://somewhere.else.net/bar/iopi1p83288>the second l
    +ink</a>
    
  4. or download this
    # @markers already holds each marker in each array spot
    #$htmlfile  already has the text of my html file
    ...
    foreach my $m (@markers){
        $htmlfile =~ s/\G<a\s+href\s+=\s+\"?(http[\s\>]+)"?>/<a href="$1$m
    +">/gi;
    }
    
  5. or download this
    # @markers already holds each marker in each array spot
    #$htmlfile  already has the text of my html file
    ...
       $htmlfile =~ s/$1/$1$markers[$count]/;
          $count ++;
    }