使用 trim() 方法删除字符串开头和结尾的空格。假设以下为我们带有空格的字符串:str1 = " The Big Bang Theory ";现在,让我们删除开头和结尾的所有空格。String str2 = str1.trim();以下是最终示例及其输出。示例 实时演示 public class Demo { public static void main(String[] args) { String str1 = " The Big Bang Theory "; System.out.println("String: "+str1); String str2 = str1.trim(); System.out.println("Updated string (trimming spaces): "+str2); } }输出String: The Big ... 阅读更多
使用 replace() 方法用另一个字符替换特定字符。假设以下为我们的字符串,这里我们将空格替换为 $ 字符。String str1 = "Orange is the new Black!";现在,使用 replace() 方法用 $ 替换字符 str1.replace(' ', '$');示例 实时演示 public class Demo { public static void main(String[] args) { String str1 = "Orange is the new Black!"; System.out.println("String: "+str1); String str2 = str1.replace(' ', '$'); System.out.println("Updated string: "+str2); } }输出String: Orange is the new Black! Updated string: ... 阅读更多