“Comment changer le caractère d'une chaîne en java” Réponses codées

Remplacer le caractère dans String Java

String str = ".............................."; 

        int index = 5; 
  
        char ch = '|'; 
 
        StringBuilder string = new StringBuilder(str); 
        string.setCharAt(index, ch); 

        System.out.println(string); 
Important Impala

Comment changer le caractère d'une chaîne en java

// You cannot change the characters of a string in java
// But you can make it work
// For Example: A Program to change 'r' to 'a'
class Main{
  public static void main(String args[]){
    String str = "return";
    String res = "";
    for(int i = 0; i<str.length(); i++){
      if(str.charAt(i)=='r'){
        res+='a';
      }
      else{
        res+=str.charAt(i);
      }
    }
    System.out.print("Result = "+res);
  }
}
Wide-eyed Warbler

Comment remplacer un personnage par un autre personnage dans une chaîne en Java

public class JavaExample{
   public static void main(String args[]){
	String str = new String("Site is BeginnersBook.com");

	System.out.print("String after replacing com with net :" );
	System.out.println(str.replaceFirst("com", "net"));

	System.out.print("String after replacing Site name:" );
	System.out.println(str.replaceFirst("Beginners(.*)", "XYZ.com"));
   }
}
devops unicorn

Réponses similaires à “Comment changer le caractère d'une chaîne en java”

Questions similaires à “Comment changer le caractère d'une chaîne en java”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code