Help for this page

Select Code to Download


  1. or download this
    $dorient =~ /^([^_]+)_/;
    $rs[2] = $1;
    
  2. or download this
    if( $dorient =~ /^([^_]+)_/ ) {
      $rs[2] = $1;
    }