地址如下:E:\workspace\trunk\Project...\Tools\V12DataBackup_xxx_yy-MM-dd_hh’mm
這是我自己的代碼 為什麼輸出的還是原來的字符串? 表示我是菜鳥 求大神指教
string str=“E:\workspace\trunk\Project...\Tools\V12DataBackup_xxx_yy-MM-dd_hh’mm";
str.Substring(str.LastIndexOf("\") + 1,str.LastIndexOf("_") - 1);
str.Substring(str.IndexOf("_")+1,str.LastIndexOf("_")-1);
MessageBox.Show(str)
string str="E:\\workspace\\trunk\\Project...\\Tools\\V12DataBackup_xxx_yy-MM-d_hh'mm";
string s=str.Substring(str.IndexOf("_") + 1, str.IndexOf("_",str.IndexOf ("_")+1) - str.IndexOf("_")-1);
MessageBox.Show(s.ToString());