I have multiple Regex Matches, how can i put them into an array and call them each individually for example ID[0] ID[1]
string value = ("{\"ID\":\"([A-Za-z0-9_., ]+)\",");
string ID = Regex.Matches(textt, @value);`
|
You can do that already, since
But if you really want to put the matches into an array, you can do:
|
|||||||||
|
Matches()returned a collection, not a string. – BoltClock♦ Jan 8 '11 at 5:02