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?

link|improve this question

2  
Are you sure you have using System.Text.RegularExpressions;? You don't fully qualify System.Text.RegularExpressions.Regex within your method body, so you must have the using up there, right? – BoltClock Sep 15 '11 at 13:37
Did you add using System.Text.RegularExpressions at the top of your class? – Icarus Sep 15 '11 at 13:38
btw there is no need to set RegExp = null in your code. stackoverflow.com/questions/2785/… – Peter Kelly Sep 15 '11 at 13:39
As a side-note: It is recommended to (a) use indentation, and (b) start local variables with a lowercase letter (regExp, not RegExp; 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 useless ToString()s. I'm pretty sure that txtSearch.Text is already of type string. – Heinzi Sep 15 '11 at 13:40
feedback

2 Answers

up vote 4 down vote accepted
using System.Text.RegularExpressions;

Try that namespace.

link|improve this answer
Cheers! I read false information then :D – OhMisterRabbit Sep 15 '11 at 13:42
feedback

I AM using System.Text.RegularExpressions.Regex

Make sure that in your using directive, you only reference the namespace, not the class:

using System.Text.RegularExpressions;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.