Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Access a character in C# StringBuilder
Firstly, set the StringBuilder −
StringBuilder str = new StringBuilder();
str.Append("premium");
To access the 5th character and display it −
Console.WriteLine(str[4]);
The following is the complete code −
Example
using System;
using System.Text;
public class Demo {
public static void Main() {
StringBuilder str = new StringBuilder();
str.Append("premium");
Console.WriteLine("String : "+str);
Console.Write("Accessing 5th character : ");
Console.WriteLine(str[4]);
}
}
Output
String : premium Accessing 5th character : i
Advertisements
