vote up 0 vote down star

What is the best rewrite of this method to speed it up?

public static bool EndsWith(string line, string term)
{

    bool rb = false;

    int lengthOfTerm = term.Length;

    string endOfString = StringHelpers.RightString(line, lengthOfTerm);

    if (StringHelpers.AreEqual(term, endOfString))
    {
        return true;
    }
    else
    {
        rb = false;
    }

    if (line == term)
    {
        rb = true;
    }

    return rb;

}
flag

This question may win for having an accuracy of 100% across all answers (at least at the time of writing). – Jeff Yates Jul 10 at 13:42
thanks for the unanimous help everyone, I looked through string's members and guess I can throw out my StartsWith and PadWithZeros helper functions as well :-) – Edward Tanguay Jul 13 at 8:15
IsNullOrEmpty is my favourite – Rob Fonseca-Ensor Jul 30 at 15:05

6 Answers

vote up 22 vote down check

Maybe I am missing the point completely, but I would spontaneously go for the String.EndsWith method.

link|flag
4  
+1, you're unlikely to get it any faster than Microsoft can in the core of the language. – paxdiablo Jul 10 at 12:44
I am currently refactoring some helper methods that I made back in 2002 at which time there was no .EndsWith in C# 1 or I didn't know about it, thanks. Funny it has the same name. – Edward Tanguay Jul 10 at 12:45
@Edward; whoever wrote that method sure did the homework in the naming department. Should facilitate refactoring, I guess. – Fredrik Mörk Jul 10 at 12:46
3  
It's been there since the beginning. When making a StringHelpers class, it probably helps to read through String's members. – Matthew Flaschen Jul 10 at 12:47
And when making an FAQ on condescension, check Matthew Flaschen's comments. :D – Jeff Yates Jul 10 at 13:41
vote up 2 vote down

line.EndsWidth(term)

link|flag
vote up 2 vote down

Is there any reason you aren't using the build in String.EndsWith method? I imagine that will be the fastest solution most of the time.

link|flag
vote up 2 vote down

Can't you just use the standard string.EndsWith() function??

link|flag
vote up 2 vote down

Could you use the .NET builtin in string.Endwith() method?

link|flag
vote up 5 vote down

You may want to drop the method rather than rewrite it...

public static bool EndsWith(string line, string term)
{
  return line.EndsWith(term);
}
link|flag

Your Answer

Get an OpenID
or

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