Help for this page

Select Code to Download


  1. or download this
    use re 'debug';
    'foo' =~ m/.*/;
    print eval <STDIN>;
    
  2. or download this
    use re 'debug';
    'foo' =~ m/o/;
    print eval <STDIN>;
    
  3. or download this
    use re 'debug';
    'foo' =~ m/(?<=f)o(?=o)/;
    print eval <STDIN>;