I'm having something like that:
{
Regex regex = new Regex(@"expression here");
foreach (Match match in regex.Matches(textBoxResponse.Text))
{
MessageBox.Show(match.Value.ToString());
}
}
What expression should I use to get only EXAMPLE from this response?
<a href="spieler.php?uid=xxx">EXAMPLE</a>
"EXAMPLE"should work :)