Archives for .Net framework - Page 3
C# StringBuilder
The ;class can use the + operator to concatenate two strings. But this is inefficient when concatenating two different strings. The reason is that String objects in .NET are immutable, that is, the value cannot…
String Formatting
.NET provides you with ways to format the output of strings. You can use the ;to format your strings using different format specifiers. string str1 = "This"; string str2 = "That";…
Changing the Casing of Strings
You can change the casing of a string. For example, a string composing of lowercase letters can be transformed into all caps. We use the ToUpper() and ToLower() instance methods which returns an uppercase…
Extracting, Removing, and Replacing Strings
If you want to extract a part of a string, you can use the Substring() method. The Substring() method accepts two arguments, the start index and the length of the string to…
Searching Strings
Searching strings have been made easy thanks to the different methods provided by .NET. Let’s take a look at the different methods to find the occurrence of a particular string.…
Splitting Strings
If you want to split a string into multiples strings, you can use the Split method. Let’s take a look at the different overloads of the Splitmethod. The Split method returns a string array that…
Trimming Strings
Sometimes, a user types unnecessary spaces that may cause certain errors. When accepting strings from a user, especially if the input came from a text box or similar controls, have…
Concatenating Strings
There are several ways of concatenating strings. Concatenating simply means combining multiple strings into one. In C#, the simplest way to concatenate strings is by using the + operator as shown below.…
Comparing Strings
We can compare two strings for equality using several ways. For example, we can use the == operator to test if the two strings are equal. The == operator doesn’t compare their references, but…