java:
int lastindex = subpath.lastindexof("/");
c#:
filenamelist[i].substring(filenamelist[i].lastindexof('/') 1);
string filename = picturebox1.imagelocation.substring(picturebox1.imagelocation.lastindexof("\\") 1);
用法是一样的。
这里需要注意的是,正斜杠和反斜杠在作substring截断符时的写法:
一个需要转义,一个不需要转义!!!!
参考文献:
http://www.cnblogs.com/leehongee/p/3324062.html
阅读(3998) | 评论(0) | 转发(1) |