Author Archives: compitionpoint - Page 17
C# File System
Most of the time, you will need to be able to write your data to files for permanent storage. You will also need to be able to access the file…
Validation Using Regular Expressions
Regular expression is a great way to validate data provided by a user to the fields of a form. Suppose that a user should input an age rather than a…
C# Regular Expressions
Sometimes when getting input from the user, you need to check if it follows a certain pattern. For example. consider a textbox that expects to get an email from the…
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…