Is there a regular expression that will capture all instances of an expression, regardless of whether or not they overlap?
E.g. in /abc/def/ghi
if I want to capture all strings beginning with /
. The regex (/.*)
only returns the entire string, but I'd want it to match on /def/ghi
and /ghi
as well.