“Remplacer le caractère dans String Java” Réponses codées

String Remplacer Java

public static void main(String args[]){  
String s1="my name is khan my name is java";  
String replaceString=s1.replace("is","was");//replaces all occurrences of "is" to "was"  
System.out.println(replaceString);  
}}  
Fierce Fly

La chaîne Java remplace le caractère en position

String str = in.nextLine();	//Original String
char cr = in.next().charAt(0); // character to replace
int index = in.nextInt();	// Index where replaced
str = str.substring(0, index) + cr + str.substring(index + 1);// modified string
SpaceNinja

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 à “Remplacer le caractère dans String Java”

Questions similaires à “Remplacer le caractère dans String Java”

Plus de réponses similaires à “Remplacer le caractère dans String Java” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code