Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    $foo = "this is a \\ test";
    print "Foo: ($foo)\n";
    ($bar) = $foo =~ /([\-])/;
    print "Bar: ($bar)\n";
    
  2. or download this
    Foo: (this is a \ test)
    Bar: ()