Home
Map
StartsWith and EndsWithUse the StartsWith and EndsWith methods on strings. StartsWith compares the first part of strings.
C#
This page was last reviewed on Dec 4, 2021.
StartsWith. This C# method tests the first part of strings. We use it to test the first characters in a string against another string. It is possible to test many strings with the foreach-loop.
With EndsWith, we test the last characters. These two methods provide an easy way to test and match common strings such as URLs. They are used throughout C# programs.
Example. We can use StartsWith and EndsWith to check the beginning and end of strings. These methods can be used for efficient testing of strings that have known starts or ends.
if
using System; class Program { static void Main() { // The input string. string input = "abcdef"; if (input.StartsWith("abc")) { Console.WriteLine("STARTSWITH: ABC"); } if (input.EndsWith("def")) { Console.WriteLine("ENDSWITH: DEF"); } } }
STARTSWITH: ABC ENDSWITH: DEF
Foreach, StartsWith. Next, we see that foreach can be used with StartsWith. Here we test elements in a string array against the input string, returning true if there is a match.
foreach
Array
using System; class Program { static void Main() { // The input string. string input = "http://site.com/test.html"; // The possible matches. string[] m = new string[] { "http://www.site.com", "http://site.com" }; // Loop through each possible match. foreach (string s in m) { if (input.StartsWith(s)) { // Will match second possibility. Console.WriteLine(s); return; } } } }
http://site.com
EndsWith. This tests the last parts of strings. It finds strings that have a certain ending sequence of characters. EndsWith is a simple way to test for ending substrings.
Detail The EndsWith method, like its counterpart the StartsWith method, has 3 overloaded method signatures.
Here The first example shows the simplest and first overload, which receives one parameter.
Tip To use EndsWith, you must pass the string you want to check the ending with as the argument.
Next An input string is tested for 3 ends. We detect the ending extension of the URL.
using System; class Program { static void Main() { // The input string. string input = "http://site.com"; // Test these endings. string[] arr = new string[] { ".net", ".com", ".org" }; // Loop through and test each string. foreach (string s in arr) { if (input.EndsWith(s)) { Console.WriteLine(s); return; } } } }
.com
Overloads. StartsWith accepts a second parameter—a StringComparison enumerated constant. You can use String Comparison to specify case-insensitive matching—try OrdinalIgnoreCase.
enum
StringComparison
Char test, performance. Consider the StartsWith method: we can duplicate its functionality with individual char tests. In benchmarks, testing chars usually is faster.
char Test
A summary. With StartsWith we can test strings (such as URLs). StartsWith tests the first characters of strings. It returns a bool telling us whether or not the starts match.
EndsWith, meanwhile, tests the end of strings. We used if-statements, and foreach with if-statements, alongside these methods on the string type.
C#VB.NETPythonGoJavaSwiftRust
Dot Net Perls is a collection of tested code examples. Pages are continually updated to stay current, with code correctness a top priority.
Sam Allen is passionate about computer languages. In the past, his work has been recommended by Apple and Microsoft and he has studied computers at a selective university in the United States.
This page was last updated on Dec 4, 2021 (edit).
Home
Changes
© 2007-2023 Sam Allen.