Performance Test – String.Contains vs String.IndexOf vs Regex.IsMatch

Yan Cui

I help clients go faster for less using serverless technologies.

To find out if a string contains a piece of substring, here are three simple ways of going about it in C#, just to name a few:

Out of curiosity I wanted to see if there was any noticeable difference in the performance of each of these options.

Given a simple string “Mary had a little lamb”, let’s find out how long it takes to test whether or not this string contains the terms ‘little’ (the match case) and ‘big’ (the no match case) using each of these approaches, repeated over 100k times:

image

As you can see, Regex.IsMatch is by far the slowest option in this test, although using RegexOptions.Compiled yielded slightly faster execution time. What was also interesting is that String.Contains turned out to be significantly faster than String.IndexOf.

If you take a look at the implementation for String.Contains in a reflector you will see:

image

So that explains the difference between the execution times for String.Contains and String.IndexOf, and indeed if I change the String.IndexOf test to use StringComparison.Ordinal (default is StringComparison.CurrentCulture) then I get an identical result to String.Contains.

With all that said, String.Contains and String.IndexOf is only useful for checking the existence of an exact substring, but Regex is much more powerful and allows you to do so much more. However, you do end up paying for them even when you don’t need those additional capabilities!

Whenever you’re ready, here are 3 ways I can help you:

  1. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game. This is your one-stop shop to level up your serverless skills quickly.
  2. Do you want to know how to test serverless architectures with a fast dev & test loop? Check out my latest course, Testing Serverless Architectures and learn the smart way to test serverless.
  3. I help clients launch product ideas, improve their development processes and upskill their teams. If you’d like to work together, then let’s get in touch.

4 thoughts on “Performance Test – String.Contains vs String.IndexOf vs Regex.IsMatch”

  1. Pingback: hashmap lookup vs string.contains performance in c# | DiscVentionsTech

Leave a Comment

Your email address will not be published. Required fields are marked *