有关字符串截取
Application.StartupPath获取当前程序的路径我的是:C:\Users\buwenqing\Desktop\demo\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug,我想把bin\Debug给截取掉,只留取前面的部分怎么截取比较好啊,我要用的是前面的部分C:\Users\buwenqing\Desktop\demo\WindowsFormsApplication1\WindowsFormsApplication1\,麻烦大侠们了 --------------------编程问答-------------------- Application.StartupPath.Replace(@"\bin\Debug","") --------------------编程问答-------------------- 或者s = Application.StartupPath;
s = s.Substring(0, s.LastIndexOf(@"\bin\")+1); --------------------编程问答-------------------- 1L正解 --------------------编程问答-------------------- 谢谢,太感谢了,我怎么没有想到Replace()方法呢 --------------------编程问答-------------------- 还可以先找到bin的位置,然后从0开始取到这个位置
补充:.NET技术 , C#