The input is a string like
asdfsa: asdfdsf=asdfjk34l534jkjf45345; sdfsdf; sdfsdfdsf
How to extract what is between the characters " = " and " ; "?
Trying to do this:
string x = Regex.Match(z, @"\=([^=;]*)\;").Groups[0].Value;
Works, but includes limiters.
"\=(.*)\;"
- jmu 4:02 pm