Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

how to cast string to char in java code example

Example 1: java convert a string to char[]

String string =  "ABCDEF" ;
 
char[] charsFromString = string.toCharArray(); // { 'A', 'B', 'C', 'D', 'E', 'F' }

Example 2: string to char in java

// getting single character from string..
String str="abcd";

char c=str.toChar(0); 

System.out.println("output is "+c); // output is a

Tags:

Cpp Example

Related

java size of array list code example setting mysql root password ubuntu code example round down php code example step by step create react app code example laravel blade variable displaying code example REST API Wikipedia code example can you use opacity property for text in css code example destructuring assignment react code example install bootstrap 4 code example use laravel collective code example shuffle a list in python code example itoa algorithm c++ code example

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy