Reqular Expressionhttp://forums.asp.net/t/415956.aspx/1?Reqular+ExpressionThu, 11 Dec 2003 14:30:13 -0500415956415956http://forums.asp.net/p/415956/415956.aspx/1?Reqular+ExpressionReqular Expression Hi Everyone, A quick question how do you split the string using regular expression. The string is in following nature. "{21B8D827-2F5B-4E49-B25B-DBA29EBD5A5E}+{F3014F53-054E-4B89-9741-4DCC74B5D8E3}" and i want the result to be stored in a string[]... how far i got: [code] string Pattern = "(([{]([A-Fa-f0-9])[}]))"; string[] CardIds = Regex.Split(productRow,Pattern); foreach(string s in CardIds){ Response.Write(s.Length); } [/code] Thank You, 2003-12-11T14:24:23-05:00