w3resource

C#: Find the length of a string

C# Sharp String: Exercise-2 with Solution

Write a C# Sharp program to find the length of a string without using a library function.

C# Sharp Exercises: Find the length of a string

Sample Solution:-

C# Sharp Code:

using System;

// Define the Exercise2 class
public class Exercise2
{
    // Main method - entry point of the program
    public static void Main()
    {
        string str; // Declare a string variable
        int l = 0; // Initialize a variable to store the length of the string

        // Prompt the user to find the length of a string
        Console.Write("\n\nFind the length of a string:\n");
        Console.Write("---------------------------------\n");

        // Request user input for a string
        Console.Write("Input the string: ");
        str = Console.ReadLine(); // Read the user input

        // Loop through each character in the string to calculate its length
        foreach (char chr in str)
        {
            l += 1; // Increment the length counter for each character encountered
        }

        // Display the length of the entered string
        Console.Write("Length of the string is: {0}\n\n", l);
    }
}

Sample Output:

Find the length of a string :                                          
---------------------------------                                      
Input the string : w3resource                                          
Length of the string is : 10 

Flowchart:

Flowchart: Find the length of a string

C# Sharp Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C# Sharp to input a string and print it.
Next: Write a program in C# Sharp to separate the individual characters from a string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/csharp-exercises/string/csharp-string-exercise-2.php