Help for this page

Select Code to Download


  1. or download this
    $_ = '<S>abc<E> <S>def<E>';
    
    print("Greedy:\n");     print("  $1\n") while /<S>(.*)<E>/g;
    print("Non-greedy:\n"); print("  $1\n") while /<S>(.*?)<E>/g;
    
  2. or download this
    Greedy:
      abc<E> <S>def
    Non-greedy:
      abc
      def