Help for this page

Select Code to Download


  1. or download this
            if ($buffer =~ m/^HELLO (\d+.\d+)/) {
                 my $version = $1;
                 if ($version == "1.0") {
    
  2. or download this
            if (my ($version) = $buffer =~ m/^HELLO (\d+\.\d+)/) { ## Esca
    +pe the "."
                 if ($version eq "1.0") {        # Do a "text" compare, no
    +t numeric