TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

<< Back to C-SHARP

C# TrimEnd and TrimStart

Use the TrimEnd and TrimStart methods on strings. TrimEnd removes trailing characters.
TrimEnd, TrimStart. TrimEnd removes ending characters from a string. Suppose we have a string with trailing punctuation. We can use TrimEnd to remove these characters.
Meanwhile, TrimStart removes from the start of a string. These methods are useful. And their effects are simple. They return copied strings.Strings
TrimEnd. This program loops through an array and trims its ending characters with TrimEnd. We use a string array. The results are printed to the screen.Trim

Note: The string array "items" here is used to show the results of TrimEnd. The TrimEnd method itself receives chars, not strings.

ArrayChar

First: The example first creates a string array. Each string in the array is looped over with the foreach-loop.

Then: TrimEnd is called. It removes the question mark, period and comma from the string.

C# program that uses TrimEnd using System; class Program { static void Main() { // Our example string array. string[] items = new string[] { "Who's there?", "I am here..." }; // Loop and call TrimEnd. foreach (string item in items) { string trimmed = item.TrimEnd('?', '.', ','); Console.WriteLine(item); Console.WriteLine(" " + trimmed); } Console.ReadLine(); } } Output Who's there? Who's there I am here... I am here
Signature. Let us examine the TrimEnd method in the .NET Framework. TrimEnd receives a params argument. This allows you to use a special syntax to send characters to it.

Tip: You don't need an array, although you can use an array. The method is versatile.

Signature of TrimEnd method: C# string string.TrimEnd(params char[] trimChars) Removes all trailing occurrences of a set of characters specified...
Params. Sometimes you want to send TrimEnd an array you create. This allows you to easily change how you call TrimEnd. Use the syntax that is most clear for your program.

Note: You can send the method an entire array, or just several parameters separated by commas.

Params
Example of TrimEnd with many parameters: C# string t = s.TrimEnd('?', '.', ','); Example of TrimEnd with array: C# char[] c = new char[] { '?', '.', ',' }; string t = s.TrimEnd(c);
TrimStart. TrimStart removes leading characters. Sometimes strings have starting characters that are not needed. TrimStart removes as many characters of the specific values as required.

Note: We must provide a parameter to TrimStart, which contains the characters you want to Trim.

Tip: The characters can be anything. We do not need to use whitespace characters.

C# program that uses TrimStart using System; class Program { static void Main() { string text = "\t, again and again."; // Trim this string. char[] arr = new char[] { '\t', ',', ' ' }; // Trim these characters. text = text.TrimStart(arr); Console.WriteLine(text); } } Output "again and again."
Optimization. Custom implementations of TrimEnd are faster than the version included in the .NET Framework. You can use a for-loop from the last index of the string.For

Loop: In the loop, we count the number of characters to remove. And finally we return a substring using that value.

Note: This method removes trailing punctuation from a string. It performs more than twice as fast as the TrimEnd method.

Remove Punctuation

And: This could be a useful trick if you have a lot of trimming to do in an important program.

Optimized trim implementation: C# static string TrimTrailingChars(string value) { int removeLength = 0; for (int i = value.Length - 1; i >= 0; i--) { char let = value[i]; if (let == '?' || let == '!' || let == '.') { removeLength++; } else { break; } } if (removeLength > 0) { return value.Substring(0, value.Length - removeLength); } return value; } Output Input string: const string input = "The Dev Codes!?!..."; Notes: TrimEnd version was called with a cached params array. TrimTrailingChars: 34.87 ns TrimEnd: 74.25 ns
A summary. TrimEnd and TrimStart can be used with array parameters. They remove chars from the end and start of strings. They remove all characters specified until they can't remove one.
© TheDeveloperBlog.com
The Dev Codes

Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf