處理String類常用的方法1

2022-08-21 23:51:15 字數 714 閱讀 3869

public

class

dome;

string str=new string(ch);

system.out.println(str);

char qwe=str.tochararray();

}}此為陣列轉化為字串,然後字串又轉回陣列的方法。

public

static

void

main(string args)

}system.out.println(

newstring(chs));

}

此方法為將字串小寫字母轉化為大寫;

scanner scanner=new

scanner(system.in);

system.out.println("請輸入乙個整數->");

string str=scanner.next(); //

"45"

while(!isnumber(str))

system.out.println(str);

}public

static

boolean

isnumber(string str)

}return

true;

此**來判斷字串是不是全部由數字組成

String 類常用方法

字串 就是由多個字元組成的一串陣列 一旦被複製,就不能被改變 public class stringdemo string s2 new string bys system.out.println s2 s2 system.out.println s2.length s2.length 5 syst...

String類常用方法

方法名稱 型別 方法描述 public string char value 構造 將字元陣列變為string類物件 public string char value,int offset int count 構造 將部分字元陣列變為string類物件 public char charat int i...

String類常用方法

返回字串長度 public int length 返回字串中指定位置的字元 public char charat int index 提取字串 方法說明 public string substring int beginindex 從beginindex位置起,從當前字串中取出剩餘的字元作為乙個新的...