I'm trying to add this snippet to my code:
public string Highlight(string InputTxt)
{
string Search_Str = txtSearch.Text.ToString();
// Setup the regular expression and add the Or operator.
Regex RegExp = new Regex(Search_Str.Replace(" ", "|").Trim(), RegexOptions.IgnoreCase);
// Highlight keywords by calling the
//delegate each time a keyword is found.
return RegExp.Replace(InputTxt, new MatchEvaluator(ReplaceKeyWords));
// Set the RegExp to null.
RegExp = null;
}
However, for some reason, "Regex" is not showing up - the type or namespace is not found. I suppose I must be using a newer version of C# - can anybody help me out with the newer way to do this? I AM using System.Text.RegularExpressions.Regex - maybe they got rid of it entirely?
using System.Text.RegularExpressions;? You don't fully qualifySystem.Text.RegularExpressions.Regexwithin your method body, so you must have the using up there, right? – BoltClock♦ Sep 15 '11 at 13:37using System.Text.RegularExpressionsat the top of your class? – Icarus Sep 15 '11 at 13:38regExp, notRegExp;inputTxt,searchStr). That makes reading your code much easier. You'll be grateful for it when you read your code again a few month after you've written it. Oh, and (c), don't use uselessToString()s. I'm pretty sure thattxtSearch.Textis already of typestring. – Heinzi Sep 15 '11 at 13:40