Hi,
I have a string of this format:
What you see above is actually two tags [pwd={something}] and [{command}({data})].
What I want is to extract the Password, the command and the Data using Regex, so I don't have to fiddle around with strings. So that I end up with 3 strings.
In the above example they would be thas:
Anyone know how?
I have a string of this format:
Code:
[pwd=BlaBla][Play(c:\Jah.mp3)]
What you see above is actually two tags [pwd={something}] and [{command}({data})].
What I want is to extract the Password, the command and the Data using Regex, so I don't have to fiddle around with strings. So that I end up with 3 strings.
In the above example they would be thas:
Code:
string sPassword = "BlaBla";
string sCommand = "Play";
string sData = @"c:\Jah.mp3";
Anyone know how?