vb获取字符串里最后一个"\"前的所有字符比如原来str="D:\Downloads\picload\123.exe" , 处理后是str="D:\Downloads\picload"[解决办法]Mid(str, 1, InStrRev(str, "\") - 1)