mid 擷取字串
mid(字串,開始位置,擷取字元數)
substitute 部分字串用新字串替換
substitute (字串,舊字串,新字串,位置(來指定以 新字串 替換第幾次出現的 舊字串))
find
find 返回乙個字串在另外乙個字串的位置
implement code:
=mid(
$a2 , find("々" , substitute(
$a2, "." , "々" , len($a2)-
len(substitute($a2, "." , ))
)), (len($a3)-
find("々",substitute($a2,".","々",len($a2)-len(substitute($a2,".",))))+1))
獲取檔案字尾名
獲取到filename的字尾 利用lastindexof 從最後面截字尾,找到最後乙個點的索引然後加一,利用substring擷取該索引後的字串 f.getfilename substring f.getfilename lastindexof 1 lastindexof 方法有以下四種形式 pub...
獲取檔案的字尾名
使用api pathfindextension實現獲取給定乙個檔案,直接獲取檔案的字尾名 如 檔名 hsduiew.txt jhdsi.adiwey 路徑 檔名 c hsh shsh tetet.txt 都可以直接獲取到字尾名。pathfindextension函式說明 函式原型 ptstr pat...
java獲取檔案字尾名
獲取檔案字尾名 public static string endwith string filename return result 可以放到工程的工具類裡直接呼叫,需要注意的是string token filename.split 一定要用轉義字元,因為spilt裡面有一定的正規表示式在裡面 發現...