Help for this page

Select Code to Download


  1. or download this
    if ( $subkey eq 1 ) {
    ...
    ...
    ...
    }
    ...
    
  2. or download this
    elsif($new1 == /1/){
    
  3. or download this
    elsif($new1 == /9/){
    
  4. or download this
    elsif($new1 =~ /1/){
    
  5. or download this
    elsif($new1 eq 1){
    
  6. or download this
    #!/usr/bin/perl -w
    
    ...
        print "=" x 10, $/;
    
    }
    
  7. or download this
    if ( $new1 == /1/ )
    
  8. or download this
    Use of uninitialized value in pattern match (m//) at ./try.pl line 8.