Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);`
share|improve this question
Last I heard Matches() returned a collection, not a string. – BoltClock Jan 8 '11 at 5:02

1 Answer

up vote 12 down vote accepted

You can do that already, since MatchCollection has an int indexer that lets you access matches by index. This is perfectly valid:

MatchCollection matches = Regex.Matches(textt, @value);
Match firstMatch = matches[0];

But if you really want to put the matches into an array, you can do:

Match[] matches = Regex.Matches(textt, @value)
                       .Cast<Match>()
                       .ToArray();
share|improve this answer
Thanks, i was unaware of this. – user556396 Jan 8 '11 at 5:08
can you post the vb equivalent for your second code snippet above? – Smith Jun 2 '11 at 10:19
@Smith Try: Dim matches() As Match = Regex.Matches(textt, @value).Cast(Of Match)().ToArray() – Crag Jun 3 '11 at 0:00
am using .net 2.0, that cast is not supported there – Smith Jun 3 '11 at 20:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.