the original string would look something like this
I want to get the value of [tt]value_2_find[/tt]. which may contain alphanumerics and underscores.
this is what I have now, but it returns the entire string
Jason Meckley
Programmer
Specialty Bakers, Inc.
Code:
[anything] FROM '[anything]' value_2_find [anything]
this is what I have now, but it returns the entire string
Code:
string substring = Regex.Replace(input, @" FROM '\w+' (\w+) ", "$1");
Jason Meckley
Programmer
Specialty Bakers, Inc.