最近用到的String的方法

2021-05-02 02:29:45 字數 680 閱讀 2314

最近用到的關於乙個字串拼寫的總結

string hql = "select * from tablea as ta where ta.id =1 group by ta.id order by ta.id desc";

int firstblank = hql.indexof(" ");                  //查詢str第乙個blank的下標位置,從0計算;結果6

int i = hql.touppercase().indexof("from");//轉換成大寫(hql不變),其中第乙個「from」的下標...;

string subhql = hql.substring(i);                 //從下標 i 開始的子字串,"from x as x ......"

string ss = subhql.split(" ");                     //以「 」(空格)為分割標誌分割字串,其結果為字串陣列

string entitystr = ss[3];

得到的結果是:counthqlbuffer = "select count(distinct ta.id) from tablea as ta where ta.id = 1 ";

PHP 最近用到的工具

ide phpstorm 功能豐富 足夠應付工作 抓包 模擬請求工具 fiddler web ftp伺服器工具 filezilla 以前用過winscp 感覺大同小異 比較工具 beyond compare 版本管理 tortoise 任務安排 myworktile 分層php效能分析工具 xhpr...

R語言 最近用到的函式

2.3 對數對比箱線圖 3 如何算兩個向量的差集?4 如何用rmd直接輸出word options scipen 200 scipen 表示在200個數字以內都不使用科學計數法參考 boxplotboxplotlog1boxplotloglabel f y name as.vector trans ...

最近用到的linux命令總結

1.指令碼執行方式 a.賦予可執行許可權 chmod x westos.sh 然後絕對路徑執行 mnt westos.sh b.sh命令執行 sh westos.sh 後台執行 sh westos.sh 2.表示前一條命令執行成功時,才執行後一條命令 如 echo 1 echo 2 5.i 游標之前...