You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Utilizing a regular expression, a formatted string is parsed and returned as an array.
Source Code
internalstaticstring[]SelectCaseMatches(objectSourceArray){Regexreg;stringpattern="{(?<tag>.*?)}";// format = {key=pair}reg=newRegex(pattern,RegexOptions.Singleline);returnreg.Split((string)SourceArray);}