Help for this page

Select Code to Download


  1. or download this
    "japhy" =~ /a/;
    eval q{ print $& };
    
  2. or download this
    "japhy" =~ /a./;
    eval q{ print $& };
    
  3. or download this
    "japhy" =~ /a/;
    print $&;
    
  4. or download this
    @& = (1,2,3);
    "japhy" =~ /a/;
    eval q{ print $& };