Help for this page

Select Code to Download


  1. or download this
    @stuff = split m{
            <!--end-->
            <a \s name=" ( \d+ ) "></a>
            <!--start-->
            }x => $data;
    
  2. or download this
    while( $data =~ m{ \G
                <a \s+ href = " (\d+) "></a>
    ...
        my $data   = $2;
        #...
    }