I am trying to parse a SQL String and look for SQL Template Parameter formatted strings. i.e. < Name, Type, Value>. I am parsing that data out to a Dictionary<String, Object>. I am not an expert in Regex, but this appears to be the best way to find the specific format, I just cannot seem to wrap my head around the Regex command I am looking for.
<.+?>
Will get me the Template Parameters I am looking for, but also catches part of a common Where statement of
WHERE (Column < value) or (column > value2)
What would be the Regex command to find all instances of "<string,string,stringornumber>" everything I tried fails to find anything, so I am sure I am just not fully grasping Regex for some reason today.