Is there a way to use regular expressions to parse out delimited variables from a string? I have a project where the user has a description field defined as text in mysql. Inside the description field, which I can load from a query, there are delimited values such as %LastName%, %FirstName%, %Account% etc. However these variables are imbedded in sentences found in the description and therefore are not contiguous. I know I could use a loop to find the values, but wondered if there's some way to extract these values into a array.
Any help would be apprecitated.