Help for this page

Select Code to Download


  1. or download this
    qr{(?smx)
        \.?   # Match the first instance of 0 or 1 one periods
    ...
         \S+  # one or more non whitespace characters
        )
      }
    
  2. or download this
    qr{(?smx)
       \.   # Find a full stop
       (.*) # and capture everything after it
      }
    
  3. or download this
    qr{(?smx)
      ^      # From the beginning
    ...
      )?     # math the group 0 or 1 times
      (.*)   # then capture everything else
      }