Hi,
I need a regular expression that matches this string:
[{x:y:z}][{k:l:m}] ... with this pattern repeating n times
i want to capture each word, that is: get the 'x', 'y', 'z', 'k'...
i've tried something like this
Dim re As New Regex("[{(\w)
\w)
\w)}]")
Dim match As Match = re.Match(str)
MessageBox.Show(match.Value)
but the match.value is '{'
i really don't know anything about regexp and would apreciate a sugestion,
tx
I need a regular expression that matches this string:
[{x:y:z}][{k:l:m}] ... with this pattern repeating n times
i want to capture each word, that is: get the 'x', 'y', 'z', 'k'...
i've tried something like this
Dim re As New Regex("[{(\w)
Dim match As Match = re.Match(str)
MessageBox.Show(match.Value)
but the match.value is '{'
i really don't know anything about regexp and would apreciate a sugestion,
tx