I would like to match groups of strings delimited by '/' that contain at least one number, question mark, or equal sign between the delimiters. For example:
www.example.com/string1/field?=string/str14ing/string/s56st43/
I would like to match the following groups:
/string1/
/field?=string/
/str14ing/
/s56st43/
Thus, leaving "string" left. Is there a way to do this using regular expressions?