Help for this page

Select Code to Download


  1. or download this
    $_ = 'He lives in Liberia';
    print    'with dot: ', $_ if /a./;
    # No output
    print 'without dot: ', $_ if /a/;
    # Outputs 'without dot: He lives in Liberia'