Help for this page

Select Code to Download


  1. or download this
    my $ip_address = "";
    if ( $allclasses_file =~ m/_([^_]+$)/ ) {
    ...
            }
    }
    return $ip_address;
    
  2. or download this
    my $ip_address = "";
    if ( $allclasses_file =~ m/_(\d+\.\d+\.\d+\.\d+)$/) {
        $ip_address = $1;
    }
    return $ip_address;