Answers for "how to replace value of string at particular position in java"

2

java string replace character at 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
Posted by: Guest on May-02-2020

Code answers related to "how to replace value of string at particular position in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language