Help for this page

Select Code to Download


  1. or download this
    \A ((?-s: .+)) .+ ((?-s: .+)) .+ ((?-s: .+)) \z
    \A ((?-s: .+)) \z
    \A ((?-s: (?s: .+))) \z
    
  2. or download this
    ^ ( $re_nonl ) $re_all ( $re_nonl ) $re_all ( $re_nonl ) $
    ^ ( $re_nonl ) $
    ^ ( $re_all ) $
    
  3. or download this
    qr{(?mo:...)(?ds:...)}
    qr{(?mo:...(?ds:...)...)}
    
  4. or download this
    qr{(?mo-ds:...)(?ds-mo:...)}mods
    qr{(?mo-ds:...(?ds-mo:...)...)}mods
    
  5. or download this
    #!/usr/bin/env perl -l
    
    ...
    is($gotBiso, $expB, 'testBiso');
    is($gotCiso, $expC, 'testCiso');
    is($gotD, $expD, 'testD');
    
  6. or download this
    1..7
    ok 1 - testA
    ...
    ok 5 - testBiso
    ok 6 - testCiso
    ok 7 - testD