String類常用彙總(二)

2021-10-04 18:31:56 字數 503 閱讀 1304

一.getbytes():返回字串的 byte 型別陣列。

getbytes()返回乙個字串的byte型別陣列

byte a=str.getbytes();

for (byte b:a

)

二.length():返回字串長度

system.out.println(str.length());
三.tolowercase():將字串轉成小寫字母。

string str4="asd";

system.out.println(str4.tolowercase());

四.touppercase():將字串轉成大寫字元。

string str5="asd";

system.out.println(str5.touppercase());

linux 常用彙總

命令列的藝術 來自 鳥哥的 linux 私房菜 來自 監控 dstat cdngym 10 iostat mtx1 top檢視 1 cpu檢視 1 cpu個數 cat proc cpuinfo grep physical id uniq wc l 2 cpu核數 cat proc cpuinfo g...

PowerDesigner常用彙總

左側工作空間上右鍵 new physical data model 彈出框選擇 physical data 輸入 model name 工具欄 database configure connections connection profiles 配置資料來源 工具欄 database update ...

String類方法彙總

1.字串串聯 string concatenation var q from c in db.customers select new 語句描述 這個例子使用 運算子在形成經計算得出的客戶location值過程中將字串欄位和字串串聯在一起。2.string.length var q from p i...