Help for this page

Select Code to Download


  1. or download this
      DB<14> $volt = "0.940V\n"
    
      DB<15>  print "matched\n" if $volt =~  /^0\.9[0-4]+V$/
    ...
    
      DB<18>  print "matched\n" if $volt eq "0.940V";
    matched
    
  2. or download this
    print ">$voltages[0]<\n"; # should print : >0.940V<