Java 中的 concat()、replace() 和 trim() 字符串。

java 8object oriented programmingprogramming

String 类的 concat() 方法将一个字符串附加到另一个字符串的末尾。该方法返回一个字符串,其中传入该方法的字符串的值附加到字符串的末尾,用于调用此方法。

示例

public class Test {
   public static void main(String args[]) {
      String s = "Strings are immutable";
      s = s.concat(" all the time");
      System.out.println(s);
   }
}

输出

字符串始终是不可变的

String 类的 replace() 方法返回一个新字符串,该字符串中所有出现的 oldChar 都替换为 newChar。

示例

public class Test {
   public static void main(String args[]) {
      String Str = new String("Welcome to Tutorialspoint.com");
      System.out.print("Return Value :" );
      System.out.println(Str.replace('o', 'T'));
      System.out.print("返回值:" );
      System.out.println(Str.replace('l', 'D'));
   }
}

输出

返回值:WelcTme tT TutTrialspTint.cTm
返回值:WeDcome to TutoriaDspoint.com

String 类的此 trim() 方法返回字符串的副本,其中省略了前导和尾随空格。

示例

import java.io.*;
public class Test {
   public static void main(String args[]) {
      String Str = new String(" Welcome to Tutorialspoint.com ");
      System.out.print("返回值:" );
      System.out.println(Str.trim() );
   }
}

输出

返回值:Welcome to Tutorialspoint.com

相关文章