In c#, the string Trim method is useful to remove all leading and trailing whitespace characters from the specified string object.
Using the Trim() method, we can also remove all occurrences of specified characters from the start and end of the current string.
Following is the pictorial representation of using the string Trim() method to remove all the leading and trailing whitespaces from the defined string in the c# programming language.
If you observe the above diagram, we defined a string called “Welcome to Tutlane” and by using the string Trim() method we removed all leading and trailing white spaces from a defined string object.
Following is the syntax of defining a string Trim method to remove all the leading and trailing whitespaces or specified characters from the string object in the c# programming language.
If you observe the above syntaxes, the first syntax is used to remove all whitespaces from the specified string's start and end, and it won’t take any parameters.
The second syntax is used to remove leading and trailing occurrences of specified characters in an array from the current string object.
Following is the example of using the string Trim() method to remove the starting and ending of whitespaces or specified characters from the string object in the c# programming language.
If you observe the above example, we used a string Trim() method with or without characters to remove all leading and trailing whitespaces and defined characters from the string object.
When you execute the above c# program, you will get the result below.
If you observe the above result, the string Trim() method removes all trailing and leading whitespaces and sets of characters from the string object based on our requirements.
In c#, the string TrimStart() method is used to remove all leading occurrences of whitespaces or specified characters in an array from the string object.
Following is the example of using the TrimStart() method to remove all leading/starting occurrences of whitespaces or specified characters from the string object.
If you observe the above example, we used a TrimStart() method to remove all leading occurrences of whitespaces and specified characters in a string object.
When you execute the above c# program, we will get the result below.
If you observe the above result, the string TrimStart() method has removed only leading or starting whitespaces and defined characters from the given string object.
In c#, the string TrimEnd() method is used to remove all trailing or ending occurrences of whitespaces or specified characters in an array from the string object.
Following is the example of using the TrimEnd() method to remove all trailing or ending occurrences of whitespaces or specified characters from the string object.
If you observe the above example, we used a TrimEnd() method to remove all trailing occurrences of whitespaces and specified characters in a string object.
When you execute the above c# program, we will get the result below.
If you observe the above result, the string TrimEnd() method has removed only trailing or ending whitespaces and defined characters from the given string object.
This is how we can use string Trim(), TrimStart(), and TrimEnd() methods in c# to trim string objects in c# programming language based on our requirements.