Storing and manipulating text

The most common type of data for variables is text. The most common types in .NET for working with text are shown in the following table:

Namespace

Type

System

Char

System

String

System.Text

StringBuilder

System.Text.RegularExpressions

Regex

Getting the length of a string

Add a new console application project named Ch04_ManipulatingText. Set the solution's startup project to be the current selection.

Sometimes, you need to find out the length of a piece of text stored in a string variable. Modify the code to look like this:

using static System.Console;

namespace Ch04_ManipulatingText
{
    class Program
    {
        static void Main(string[] args)
        {
            string city = "London";
 WriteLine($"{city} is {city.Length} ...

Get C# 6 and .NET Core 1.0: Modern Cross-Platform Development now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.