Help for this page

Select Code to Download


  1. or download this
    if( $sid =~ /^[^0-9]$/ ) {
        # exit here......
    }
    
  2. or download this
    if( $sid !~ m/^([0-9]{1,5})$/ ) {
        # exit
    } else {
        $input = $1;
    }
    
  3. or download this
    if( $sid =~ m/^([0-9]{1,5})$/ ) {
        $input = $1;
    } else {
        # exit
    }