Posted by : Anwar Hossain
Category : asp.net c # basic tutorial

C# String Class Methods Example

Dear viewer's in this tutorial I will give some example of common c # string class methods. My Previous article I have given some list of common C # methods . Now I have given actual example using Console application for C # string class methods. Hope these example will give anyone to understand the use of common c # string class methods accurately.

C# String Class Methods Example

C # String Class Methods Example

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Collections;

 

namespace Csharp_String

{

    class Program

    {

        static void Main(string[] args)

        {

 

 

            string Country;

            string City;

 

 

            Country = "Bangladesh";

            City = "Dhaka";

 

            Console.WriteLine("\n====Make clone of string.\n");

            Console.WriteLine(Country.Clone());

         

            Console.WriteLine("\n====Compares two specified String objects\n");

            Console.WriteLine(Country.CompareTo(City));

 

            Console.WriteLine("\n====Returns a value indicating whether a specified substring occurs within this string.\n");

            Console.WriteLine(Country.Contains("Ban"));

 

            Console.WriteLine("\n====Determines whether the end of this string instance matches the specified string. \n");

            Console.WriteLine(Country.EndsWith("h"));

 

            Console.WriteLine("\n====Determines whether this instance and another specified String object have the same value\n");

            Console.WriteLine(Country.Equals(City));

 

            Console.WriteLine("\n====Reports the zero-based index of the first occurrence  \n");

            Console.WriteLine(Country.IndexOf("e"));

 

            Console.WriteLine("\n====Returns a copy of this string converted to lowercase.\n");

            Console.WriteLine(Country.ToLower());

 

            Console.WriteLine("\n====Returns a copy of this string converted to uppercase.\n");

            Console.WriteLine(Country.ToUpper());

 

            Console.WriteLine("\n====Returns a new string in which a specified string is inserted at a specified index Position \n");

            Console.WriteLine(Country.Insert(0, "Hello"));

 

            Console.WriteLine("\n====Reports the zero-based index position of the last occurrence.\n");

            Console.WriteLine(Country.LastIndexOf("e"));

   

            Console.WriteLine("\n====Compares two specified String objects \n");   

            Console.WriteLine(Country.Length);

 

            Console.WriteLine("\n====This method deletes all the characters from  index position. \n");  

            Console.WriteLine(Country.Remove(5));

 

            Console.WriteLine("\n====This method helps to replace the character.\n");  

            Console.WriteLine(Country.Replace('B', 'd'));

 

            Console.WriteLine("\n====Compares two specified String objects\n");  

            Console.WriteLine(Country.StartsWith("S"));

 

            Console.WriteLine("\n====Retrieves a substring from this instance. \n");

            Console.WriteLine(Country.Substring(2, 5));

 

            Console.WriteLine("\n====It removes extra whitespaces from beginning and ending of string \n"); 

            Console.WriteLine(Country.Trim());

          

          

 

            Console.ReadKey();

         

 

        }

    }

}

 

 

Out Put

C_Sharp_String_Class_Methods_console



Realted Article Headline

How to find odd number in c #
How to generate random number in c #
Nested For Loop Example in C Sharp
Store C sharp reference type in a List C#
Find number of items in a List C#
Concept about C # List
Custom Time formatting example C #
Custom Date formatting example C #
String Format Example using ASP.Net C#
Simple enum example in C Sharp
Nested switch-case statement example in C #
Combined switch...case statement example in C #
C Sharp switch case statement Example
C# SUM ArrayList Element Example
C# String Class Methods Example
C Sharp String Class Properties and Methods
C Sharp String Class Example
How to join two ArrayList collections in C#.
How to Use C Sharp Math Class
C Sharp ArrayList Property and Method
C Sharp ArrayList Example
C Sharp Arrays Example
C Sharp Logical operator Example
C Sharp Relational operators
C Sharp Arithmetic operators Example
C Sharp Common Assignment Operator
Simple for loop example in c sharp

Article Category

How to create asp.net control dynamically
Learn HTML for beginner
DataList example in C Sharp
Mail sending in asp.net c#
State Management in ASP C #
Basic sql tutorial for Beginner
DataTable example in ASP.Net C#
How to use LINQ in ASP.NET C#
asp.net c # basic tutorial
How to use ajax toolkit in asp.net C#
How to use different types of validation control using asp.net c#
How to use grid view in asp.net c#
Protected by Copyscape Online Plagiarism Detection