Help for this page

Select Code to Download


  1. or download this
    for (1..10) {
        ...
        last if ($charread =~ /\s/);
    }
    
  2. or download this
    for (1..10) {
        ...
        last if ($charread eq " " || $charread eq "\t" ....);
    }