Say I have a string like this:

string temp = "<Style id="STYLE">";

and I want to grab the part of the string that is just in quotes, how can I do that? ie. have a new string with just STYLE in it.

ie. string temp2 = "STYLE";

Thanks!