Help for this page

Select Code to Download


  1. or download this
    $data =~ /tag2=(\d+)/;
    $tag2 = $1 if $1;
    
  2. or download this
    $tag1 = $1 if $data =~ /tag1=(\d+)/;
    $tag2 = $1 if $data =~ /tag2=(\d+)/;