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,
pratik.parik...
Member
40 Points
8 Posts
Reqular Expression
Dec 11, 2003 02:24 PM|LINK