sciter 字元擷取操作開啟檔案並選中檔案不開啟

2021-10-01 09:32:59 字數 409 閱讀 7025

var path = $(#systemitem).$$(span);  //拿路徑    有問題無法開啟檔案

/*    var strpath = path[item].html;

var ifind = strpath.lastindexof("\\"); //從後面

if(ifind>0)

藍色為擷取字串操作

下面為開啟檔案並且選中檔案操作

system.exec("explorer.exe","/select,",strpath);  //開啟資料夾操作*/

system.exec("explorer.exe","/select,",path[item].html);  //開啟資料夾操作

stdout.println("路徑  = "+path[item].html);

shell 字串擷取操作

字串操作 長度,讀取,替換 string的長度 在 string中,從位置 position開始提取子串 在 string中,從位置 position開始提取長度為 length的子串 從變數 string的開頭,刪除最短匹配 substring的子串 從變數 string的開頭,刪除最長匹配 su...

js 字串常用操作 擷取

str.substring start,end 擷取下標start到end 1之間的字串 包含start不包含end end可選,預設從start到結束 start end,引數會自動調換位置 start為負數,等價於start 0 var str 0123456789 console.log st...

字串操作(替換,擷取,插入)

1.在 main 方法中從控制台輸入乙個字串,然後將字串中所有的 替換成 使用indexof找到要替換的,用replace來將其替換成,如下。static void main string args console.writeline 替換後的字串為 str console.readkey 2.在 ...