nsstring* index=@"/users/1.zip";
對路徑進行擷取的9種操作
nslog(
@"1=%@"
,[index lastpathcomponent]);
對應結果1=
1.zip
nslog(
@"2=%@"
,[index stringbydeletinglastpathcomponent]);
對應結果 :去掉檔名2=
/users/
nslog(
@"3=%@"
,[index pathextension]);
對應結果 :得到檔名字尾: 3=
zipnslog(
@"4=%@"
,[index stringbydeletingpathextension]);
對應結果 :除去檔案的字尾4=/users/1
nslog
(@"5=%@"
,[[index
lastpathcomponent
]stringbydeletingpathextension]);
對應結果 :取檔名,不帶字尾的:5= 1
字串擷取方式
shell字串擷取 str ip 192.168.3.123,port 8080 擷取 echo 1 是運算子,表示從左側第乙個字元開始,到,結束,刪除這些字元 上例顯然擷取之後結果為 port 8080 擷取 echo 2 表示從左側第乙個字元開始,到最後乙個.結束,將最後乙個.之前的字元全部刪除...
字串的擷取方式
一 通過split擷取 string str abc,12,3yy98,0 string strs str.split for int i 0,len strs.length isystem.out.println strs i tostring 執行結果 abc 12 3yy98 0 二 通過su...
Java 擷取路徑字串
1.擷取路徑最後乙個字串 html view plain copy 擷取鏈結最後乙個字串 author zlq public class stringtest 2.擷取鏈結最後乙個字串 html view plain copy 擷取鏈結最後乙個字串 author zlq public class s...