40

How to get first character of string?

string test = "StackOverflow";

first character = "S"

Suragch
  • 484,302
  • 314
  • 1,365
  • 1,393
user1710911
  • 657
  • 3
  • 7
  • 15

4 Answers4

89
String test = "StackOverflow"; 
char first = test.charAt(0);
Maveňツ
  • 1
  • 12
  • 50
  • 89
Karakuri
  • 38,365
  • 12
  • 84
  • 104
72

Another way is

String test = "StackOverflow";
String s=test.substring(0,1);

In this you got result in String

M D
  • 47,665
  • 9
  • 93
  • 114
5

You can refer this link, point 4.

public class StrDemo
{
public static void main (String args[])
{
    String abc = "abc";

    System.out.println ("Char at offset 0 : " + abc.charAt(0) );
    System.out.println ("Char at offset 1 : " + abc.charAt(1) );
    System.out.println ("Char at offset 2 : " + abc.charAt(2) );

  //Also substring method
   System.out.println(abc.substring(1, 2));
   //it will print 

bc

// as starting index to end index here in this case abc is the string 
   //at 0 index-a, 1-index-b, 2- index-c

// This line should throw a StringIndexOutOfBoundsException
    System.out.println ("Char at offset 3 : " + abc.charAt(3) );
 }
}
ajitksharma
  • 4,523
  • 2
  • 21
  • 40
4

Use charAt():

public class Test {
   public static void main(String args[]) {
      String s = "Stackoverflow";
      char result = s.charAt(0);
      System.out.println(result);
   }
}

Here is a tutorial

Sagar Pilkhwal
  • 3,998
  • 2
  • 25
  • 77