Lazy KoT
System.Text.RegularExpressions.MatchCollection _
_.item(n)
{System.Text.RegularExpressions.Match}
Captures: {System.Text.RegularExpressions.CaptureCollection}
Empty: {System.Text.RegularExpressions.Match}
Groups: {System.Text.RegularExpressions.GroupCollection}
Index: 0 {int32}
Length: 7 {int32}
Success: True {boolen}
Value: "~10001~" {system.string}
Мне нужно объеденить в одну строку параметр "Value" из всех итемов коллекции.
Аналогично такому спопсбу:
Dim rm As System.Text.RegularExpressions.MatchCollection
dim a as string = ""
For Each i As System.Text.RegularExpressions.Match In rm
a = a + i.Value
Next
System.Text.RegularExpressions.MatchCollection _
_.item(n)
{System.Text.RegularExpressions.Match}
Captures: {System.Text.RegularExpressions.CaptureCollection}
Empty: {System.Text.RegularExpressions.Match}
Groups: {System.Text.RegularExpressions.GroupCollection}
Index: 0 {int32}
Length: 7 {int32}
Success: True {boolen}
Value: "~10001~" {system.string}
Мне нужно объеденить в одну строку параметр "Value" из всех итемов коллекции.
Аналогично такому спопсбу:
Dim rm As System.Text.RegularExpressions.MatchCollection
dim a as string = ""
For Each i As System.Text.RegularExpressions.Match In rm
a = a + i.Value
Next