Switch on String
In this chapter you will learn:
A string can control a switch statement
using System; /*from java2 s. c o m*/
class MainClass {
public static void Main() {
string[] strs = { "one", "two", "three", "two", "one" };
foreach(string s in strs) {
switch(s) {
case "one":
Console.Write(1);
break;
case "two":
Console.Write(2);
break;
case "three":
Console.Write(3);
break;
}
}
Console.WriteLine();
}
}
The code above generates the following result.
Next chapter...
What you will learn in the next chapter:
- Use the Trim(), TrimStart(), and TrimEnd() methods to trim strings
- Trim white space
- Trim #s from String
Home » C# Tutorial » String