C# Strings and Text Processing :

Strings :

In practice we often come to the text processing: reading text files, searching for keywords and replacing them in a paragraph, validating user input data, etc. In such cases we can save the text content, which we will need in strings, and process them using the C# language.

What Is a String?

A string is a sequence of characters stored in a certain address in memory. Remember the type char? In the variable of type char we can record only one character. Where it is necessary to process more than one character then strings come to our aid.

Example :

  1. /* Description: Simple string example */
  2. using System;
  3. namespace DemoProgramming
  4. {
  5. class Program
  6. {
  7. static void Main()
  8. {
  9. string message = "My Name is AyaN.";
  10. Console.WriteLine("message = {0}", message);
  11. Console.WriteLine("message.Length = {0}", message.Length);
  12. for (int i = 0; i < message.Length; i++)
  13. {
  14. Console.WriteLine("message[{0}] = {1}", i, message[i]);
  15. }
  16. Console.ReadKey();
  17. }
  18. }
  19. }

Output :

C Sharp Language Simple string example

Declaring a String :

We can declare variables from the type string by the following rule:

string str;

Declaring a string represents a variable declaration of type string. This is not equivalent to setting a variable and allocating memory for it! With the declaration we inform the compiler that the variable str will be used and the expected type for it is string. We do not create a variable in the memory and it is not available for processing yet (value is null, which means no value).


Initializing a String :

In order to process the declared string variable, we must create it and initialize it. Creating a variable of certain class (also known as instantiating) is a process associated with the allocation of the dynamic memory area (the heap). Before setting a specific value to the string, its value is null. This can be confusing to the beginner programmers: uninitialized variables of type string do not contain empty values, it contains the special value null – and each attempt for manipulating such a string will generate an error (exception for access to a missing value NullReferenceException)!

We can initialize variables in the following three ways:

  • By assigning a string literal.
  • By assigning the value of another string.
  • By passing the value of an operation which returns a string.

Setting a String Literal :

Setting a string literal means to assign a predefined textual content to a variable of type string. We use this type of initialization, when we know the value that must be stored in the variable. Example for setting a string literal:

string website = "http://www.techbaz.org";

Assigning Value of Another String :

Assigning a value is equivalent to directing a string value or a variable to a variable of type string. An example is the following code snippet:

string name = "AyaN";
string data = name;


Passing a String Expression :

The third option to initialize a string is to pass the value of a string expression or operation, which returns a string result. This can be a result from a method, which validates data; adding together the values of a number of constants and variables; transforming an existing variable, etc.

Example of an expression, which returns a string:

string email = "some@gmail.com";
string info = "My mail is: " + email;

Computer Science Engineering

Special Notes

It's a special area where you can find special questions and answers for CSE students or IT professionals. Also, In this section, we try to explain a topic in a very deep way.

CSE Notes