Help for this page

Select Code to Download


  1. or download this
    
    /
    ...
      ){1,4}          # 1 to 4 lines. (0 will permit an empty match.)
    )                 # Done capturing.
    /mx;              # /m so that ^ anchor works, /x for comments.
    
  2. or download this
    
    /
    ...
      ){1,4}        # 1 to 4 lines. (0 will permit an empty match.)
    )               # Done capturing.
    /mx;            # /m so that ^ anchor works, /x for comments.