如何在c#中使用带有文件路径的子字符串

时间:2013-08-01 12:27:17

标签: c# substring

我知道这个值应该使用Substring但我不知道如何在C#中这样做。您的代码非常感谢。谢谢!

我想改变这个:

   "C:\\TFS\\Deployment\\files\\1.0.1.1\\test\\test00.xml"

到新值:

   "C:\\TFS\\Deployment\\files\\1.0.1.1"

2 个答案:

答案 0 :(得分:11)

var testPath = System.IO.Directory.GetParent(path);
var newValue = System.IO.Directory.GetParent(testPath);

答案 1 :(得分:1)

嗯,很难确定用于截断字符串的标准。除了D.R.的回答:

"C:\\TFS\\Deployment\\files\\1.0.1.1\\test\\test00.xml".Substring(0,31);