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# Truncate String

Implement a truncate method to shorten strings that are too long, but leave others alone.
Truncate. This method restricts the maximum length of strings. We truncate a string so that it has a substring of the first specified number of letters.Strings
Notes, usefulness. Truncate is useful for text in databases or in user interfaces where space is limited. It can be helpful when justifying text to the right as well.
An example. The string type does not provide a Truncate method. We must use a conditional expression and either Substring or Remove.

Tip: Looking in IL Disassembler, Remove calls into Substring. So these custom methods directly call Substring.

RemoveIL Disassembler

Truncate: If the source is longer than the max length, we call Substring to get the first N characters. This copies the string.

Truncate2: Use a nested Math.Min expression in a Substring call. In this method, the Substring method is always entered.

Math.Max, Min

Info: By always entering the Substring method, we may create string copies that are not needed.

C# program that truncates strings using System; class Program { static void Main() { Console.WriteLine(StringTool.Truncate("Carrot", 3)); Console.WriteLine(StringTool.Truncate2("Carrot", 3)); Console.WriteLine(StringTool.Truncate("Wagstaff", 20)); Console.WriteLine(StringTool.Truncate2("Wagstaff", 20)); } } /// <summary> /// Custom string utility methods. /// </summary> public static class StringTool { /// <summary> /// Get a substring of the first N characters. /// </summary> public static string Truncate(string source, int length) { if (source.Length > length) { source = source.Substring(0, length); } return source; } /// <summary> /// Get a substring of the first N characters. [Slow] /// </summary> public static string Truncate2(string source, int length) { return source.Substring(0, Math.Min(length, source.Length)); } } Output Car Car Wagstaff Wagstaff
Performance. I wanted to know if avoiding Substring() when it is not needed would have an impact on performance. And I found using the if-statement before calling Substring is faster.If

Version 1: This code calls Truncate, which uses an if-statement to avoid calling Substring if the truncation does not need to occur.

Benchmark

Version 2: This code always uses substring, but uses Math.Min to ensure we do not take a substring that is too long.

Result: Truncate, which avoids calling Substring(), is faster. It avoids a string method call in the benchmark.

C# program that benchmarks Truncate, Truncate2 using System; using System.Diagnostics; class Program { public static class StringTool { public static string Truncate(string source, int length) { if (source.Length > length) { source = source.Substring(0, length); } return source; } public static string Truncate2(string source, int length) { return source.Substring(0, Math.Min(length, source.Length)); } } const int _max = 100000000; static void Main() { var s1 = Stopwatch.StartNew(); // Version 1: use Truncate. for (int i = 0; i < _max; i++) { string a = StringTool.Truncate("Carrot", 3); string b = StringTool.Truncate("Carrot", 10); } s1.Stop(); // Version 2: use Truncate2. var s2 = Stopwatch.StartNew(); for (int i = 0; i < _max; i++) { string a = StringTool.Truncate2("Carrot", 3); string b = StringTool.Truncate2("Carrot", 10); } s2.Stop(); Console.WriteLine(((double)(s1.Elapsed.TotalMilliseconds * 1000000) / _max).ToString("0.00 ns")); Console.WriteLine(((double)(s2.Elapsed.TotalMilliseconds * 1000000) / _max).ToString("0.00 ns")); } } Output 14.18 ns Truncate 15.28 ns Truncate2
A summary. Here we saw 2 implementations of string Truncate. We validated that they have correct results. Avoiding the Substring call when it is not necessary is faster.
© 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