Help for this page

Select Code to Download


  1. or download this
    if(@array[3..4] =~ /\S/) {
        do stuff;
    }
    
  2. or download this
    if($array[4] =~ /\S/) {
        do stuff;
    }
    
  3. or download this
    if("@array[3,4]" =~ /\S/) {
    or
    if ("@array[3,4]" =~ tr/ \t\n//c) {