Help for this page

Select Code to Download


  1. or download this
    if( $export =~ m/y|Y/ ) {....}
    
  2. or download this
    if( $export =~ m/y/i ) {....}
    
  3. or download this
    if( $export =~ m/[yY]/ ) { .... }
    
  4. or download this
    if( $export =~ m/^y/i ) {....}