替换字符串中的某个字符是指在指定字符的位置放置另一个字符。 索引代表指定的字符。在java中,String类用于替换字符和字符串。字符串是java.lang包的类。
广告 该类别中的热门课程 JAVA 掌握 - 专业化 | 78 课程系列 | 15 次模拟测试开始您的免费软件开发课程
网络开发、编程语言、软件测试及其他
在编程中,开发人员面临着许多需要替换字符串中字符的情况。 Java提供了多种方法来替换String中的字符。删除是替换字符的重要方法之一。使用remove方法时,应该记住一些事情
语法:
在以下语法中,给出了如何替换字符。替换方法中有两个参数:第一个参数是要替换的字符,第二个参数是要替换的字符。
String replace(char oldChar, char newChar): //OR String replaceFirst(char oldChar, char newChar): //replaces only the first occurrence of the character
在第二行语法中,replaceFirst 方法用于仅替换第一次出现的字符。
以下是 Java 替换字符串中的字符的示例:
在此示例中,我们可以看到如何将字符串中的一个字符替换为另一个字符。
代码:
import java.util.*; public class JavaReplaceCharExample{ public static void main(String[] args){ Scanner input = new Scanner(System.in); System.out.println("Hi, please enter the String"); String str = input.nextLine(); System.out.println("Enter the character to replace"); char ch = input.next().charAt(0); System.out.println("Enter the character to be replaced with"); char newCh = input.next().charAt(0); String newStr = str.replace(ch, newCh); //displaying new string after applying replace method System.out.println(newStr); } }
输出:
在此示例中,replaceFirst 用于仅替换该字符串中第一次出现的字符。
代码:
import java.util.*; public class JavaReplaceCharExample2{ public static void main(String[] args){ //second string to replace the character String str = "All that glitters is not gold"; //displaying string before applying replace method System.out.println("\n" + str); //replacing character p from b String newStr = str.replace("g", "b"); //displaying string after replacing the character System.out.println(newStr); //second string to replace the character String sentence = "A cat has nine lives"; //displaying string before applying replace method System.out.println("\n" + sentence); //replacing character n from m String newSentence = sentence.replaceFirst("n", "m"); //displaying new string after applying replace method System.out.println(newSentence); } }
输出:
程序的输出如下所示。在输出屏幕截图中,第一个句子字符“g”被“b”替换。在第二句中,仅第一次出现的语法“n”被替换为“m”。
在此示例中,首先用逗号替换管道分隔值。将‘|’替换为“,”后,在下一行中使用replace方法将“A”字符替换为“i”。
代码:
import java.util.*; public class JavaReplaceCharExample3{ public static void main(String[] args){ //second string to replace the character String str = "Alabama|California|Florida|Texas|New Jersey|Arizona"; //displaying string before applying replace method System.out.println("\n" + str); //replacing | with the comma String newStr = str.replace('|', ','); //displaying string after applying replace method System.out.println("\n" + newStr); //replacing the character A with the i String reNewedStr = newStr.replace('A', 'i'); //displaying string before applying replace method System.out.println("\n" + reNewedStr); } }
输出:
在这个例子中,我们可以看到如何在不使用replace方法的情况下替换字符串。指定字符之前和之后的字符串存储在下面给出的程序中的单独变量中。进一步在程序中,它与要替换的字符连接起来。
代码:
import java.util.*; public class JavaReplaceCharExample4{ public static void main(String[] args){ //second string to replace the character String str = "Be slow in choosing, but slower in changing."; //displaying string before applying replace method System.out.println("\n" + str); int index = 3; char chToReplacedWith = 'b'; String strBeforeChar = str.substring(0, index); String strAfterChar = str.substring(index + 1); String newStr = strBeforeChar + chToReplacedWith + strAfterChar; //displaying string before applying replace method System.out.println("\n" + newStr); } }
输出:
上面给出的文章描述了如何替换字符串中的字符,java包提供了哪些方法来处理字符串。在给定的示例中,给出了如何使用字符串类方法来替换字符串中的字符。
以上是Java 替换字符串中的字符的详细内容。更多信息请关注PHP中文网其他相关文章!