替换动态字符串中的部分文本

时间:2010-10-27 18:36:59

标签: c# asp.net regex string-math

让我们以此字符串为例:

D:/firstdir/Another One/and 2/bla bla bla/media/reports/Darth_Vader_Report.pdf

我想削减路径的第一部分:

D:/firstdir/Another One/and 2/bla bla bla

并将其替换为**../**,并保留路径的第二部分 (media/reports/Darth_Vader_Report.pdf

如果我知道它的长度或大小,我可以使用ReplaceSubstring。但由于字符串的第一部分是动态的,我该怎么做呢?


更新

在StriplingWarrior问题之后,我意识到我可以更好地解释。

目标是替换/media后面的所有内容。 “media”目录是静态的,并且始终是路径的决定性部分。

3 个答案:

答案 0 :(得分:3)

你可以这样做:

string fullPath = "D:/firstdir/Another One/and 2/bla bla bla/media/reports/Darth_Vader_Report.pdf"
int index = fullPath.IndexOf("/media/");
string relativePath = "../" + fullPath.Substring(index);

我没有检查过,但我认为应该这样做。

答案 1 :(得分:3)

使用正则表达式:

Regex r = new Regex("(?<part1>/media.*)");
var result = r.Match(@"D:/firstdir/Another One/and 2/bla bla bla/media/reports/Darth_Vader_Report.pdf");
if (result.Success)
{
    string value = "../" + result.Groups["part1"].Value.ToString();
    Console.WriteLine(value);
}
祝你好运!

答案 2 :(得分:0)

我会写下面的正则表达式模式,

String relativePath = String.Empty;
Match m = Regex.Match("Path", "/media.*$");
if (m.Success)
{
relativePath = string.Format("../{0}", m.Groups[0].Value);
}