Help for this page

Select Code to Download


  1. or download this
    $var = "(this is a good idea!), No it's not";
    
  2. or download this
    if ( $var =~ m/^\((.*)\),(.*)$/ )
    { @args = ($1, $2); }
    
  3. or download this
    if ( $var =~ m/^[(](.*)[)],(.*)$/ )
    { @args = ($1, $2); }
    
  4. or download this
    #!/usr/bin/perl -w
    
    ...
    
    print "\nArgs:\n";
    print Dumper(@args)."\n";
    
  5. or download this
    Args:
    $VAR1 = 'Memory is incorrectly balanced between the NUMA nodes of this
    + system, which will lead to poor performance.  See';
    $VAR2 = '_NUMA_CRIT_';