7.5. String Methods¶
C# provides many useful methods for string objects. Recall that a method is a function that “belongs to” a specific object. Methods will typically result in some operation being carried out on the data within an object. For strings, this means that our methods will typically transform the characters of the given string in some way. This transformation will either be a modified copy of the original string, or a new instance of the string.
As we have learned, strings are immutable. Therefore, string methods will not change the value of a string itself, but instead will return a new string that is the result of the given operation.
We saw this behavior in the ToLower
example.
Example
1 2 3 4 | string nonprofit = "LaunchCode";
Console.WriteLine(nonprofit.ToLower());
Console.WriteLine(nonprofit);
|
Console Output
launchcode
LaunchCode
While nonprofit.ToLower()
evaluated to "launchcode"
, the value of nonprofit
was left unchanged. This will be case for each of the string methods.
7.5.1. Common String Methods¶
Here we present the most commonly-used string methods. You can find documentation for other string methods at:
Method |
Syntax |
Description |
---|---|---|
|
Returns the index of the first occurrence of the substring in the string, and returns -1 if the substring is not found. |
|
|
Returns a boolean value if a specified string value is present. |
|
|
Returns a copy of the given string, with all uppercase letters converted to lowercase. |
|
|
Returns a copy of the given string, with all lowercase letters converted to uppercase. |
|
|
Returns a copy of the given string with the leading and trailing whitespace removed. |
|
|
Returns a copy of |
|
|
Returns the substring consisting of characters from index |
|
|
Splits the string into sections at each |
|
|
Returns new |
|
|
Returns new string after certain number of characters have been deleted from current string. |
|
|
Copies characters of string into character array. |
|
|
Returns a string that represents the current object. |
Tip
String methods can be combined in a process called method chaining. Given word = "C Sharp";
, word.ToUpper()
returns C SHARP
. What would word.Substring(1,4).ToUpper()
return? Try it at repl.it.
7.5.2. Check Your Understanding¶
Follow the links in the table above for the Replace
, Substring
, and Trim
methods. Review the content and then answer the following questions.
Question
What is printed by the following code?
1 2 3 4 | string language = "C Sharp";
language.Replace('C', 'Q');
language.Substring(0,5);
Console.WriteLine(language);
|
"C Sharp"
"Q Sharp"
"Q Sha"
"C Shar"
Question
Given string language = 'C Sharp';
, what does language.Substring(1,4)
return?
" Sha"
"h"
"Shar"
"C Sh"
Question
What is the value of the string printed by the following program?
1 2 3 4 | string org = " The LaunchCode Foundation ";
string trimmed = org.Trim();
Console.WriteLine(trimmed);
|
" The LaunchCode Foundation "
"The LaunchCode Foundation"
"TheLaunchCodeFoundation"
" The LaunchCode Foundation"
..ans: “The LaunchCode Foundation”