Java 實(shí)例 - 刪除字符串中的一個(gè)字符
以下實(shí)例中我們通過字符串函數(shù) substring() 函數(shù)來刪除字符串中的一個(gè)字符,我們將功能封裝在 removeCharAt 函數(shù)中。
實(shí)例代碼如下:
//Main.java 文件 public class Main { public static void main(String args[]) { String str = "this is Java"; System.out.println(removeCharAt(str, 3)); } public static String removeCharAt(String s, int pos) { return s.substring(0, pos) + s.substring(pos + 1); } }
以上代碼實(shí)例輸出結(jié)果為:
thi is Java
更多建議: