Help for this page

Select Code to Download


  1. or download this
    $_ = 'bb ca de';
    /(?:(.)b|.)+/i;
    ...
    /(?:(.)b|.)+/i;
    print "Test:             1='$1', 2='$2'\n";
    # Prints:  Test:   1='', 2=''