Help for this page

Select Code to Download


  1. or download this
        /^(?:(?!pattern).)*$/s;
    
  2. or download this
        s/^((?:(?!toto).)*?)foo/${1}bar/s;
    
  3. or download this
        s/^((?:(?!toto).)*?)\Kfoo/bar/s;