logo

Java Convertir la chaîne en char

Nous pouvons convertir Chaîne à char en Java en utilisant charAt() méthode de la classe String.

Java Convertir la chaîne en char

La méthode charAt() renvoie un seul caractère. Pour obtenir tous les caractères, vous pouvez utiliser loop.

table en réaction

Signature

La méthode charAt() renvoie un seul caractère de l'index spécifié. Le signature de la méthode charAt() est donnée ci-dessous :

 public char charAt(int index) 

Chaîne Java en char Exemple : méthode charAt()

Voyons le code simple pour convertir String en char en Java en utilisant la méthode charAt().

 String s='hello'; char c=s.charAt(0);//returns h 

Voyons l'exemple simple de conversion de String en char en Java.

 public class StringToCharExample1{ public static void main(String args[]){ String s='hello'; char c=s.charAt(0);//returns h System.out.println('1st character is: '+c); }} 
Testez-le maintenant

Sortir:

 1st character is: h 

Voyons un autre exemple pour convertir tous les caractères d'une chaîne en caractère.

 public class StringToCharExample2{ public static void main(String args[]){ String s=&apos;hello&apos;; for(int i=0; i<s.length();i++){ char c="s.charAt(i);" system.out.println('char at '+i+' index is: '+c); } }} < pre> <span> Test it Now </span> <p>Output:</p> <pre> char at 0 index is: h char at 1 index is: e char at 2 index is: l char at 3 index is: l char at 4 index is: o </pre> <h2>Java String to char Example: toCharArray() method</h2> <p>Let&apos;s see the simple code to convert String to char in java using toCharArray() method. The toCharArray() method of String class converts this string into character array.</p> <pre> public class StringToCharExample3{ public static void main(String args[]){ String s1=&apos;hello&apos;; char[] ch=s1.toCharArray(); for(int i=0;i<ch.length;i++){ system.out.println('char at '+i+' index is: '+ch[i]); } }} < pre> <span> Test it Now </span> <p>Output:</p> <pre> char at 0 index is: h char at 1 index is: e char at 2 index is: l char at 3 index is: l char at 4 index is: o </pre></ch.length;i++){></pre></s.length();i++){>

Chaîne Java en char Exemple : méthode toCharArray()

Voyons le code simple pour convertir String en char en Java en utilisant la méthode toCharArray(). La méthode toCharArray() de la classe String convertit cette chaîne en tableau de caractères.

 public class StringToCharExample3{ public static void main(String args[]){ String s1=&apos;hello&apos;; char[] ch=s1.toCharArray(); for(int i=0;i<ch.length;i++){ system.out.println(\'char at \'+i+\' index is: \'+ch[i]); } }} < pre> <span> Test it Now </span> <p>Output:</p> <pre> char at 0 index is: h char at 1 index is: e char at 2 index is: l char at 3 index is: l char at 4 index is: o </pre></ch.length;i++){>