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