无需使用正则表达式。
这可以很容易地使用string.StartsWith、string.Substring和Path.GetDirectoryName来删除文件名。
string fullPath = @"C:\Windows\System32\WindowsPowerShell\v1.0\Examples\profile.ps1";
string toMatch = @"C:\Windows\System32";
string result = string.Empty;
if(fullPath.StartsWith(toMatch, StringComparison.CurrentCultureIgnoreCase) == true)
{
result = Path.GetDirectoryName(fullPath.Substring(toMatch.Length));
}
Console.WriteLine(result);
编辑:此更改负责 aiodintsov 的观察,并包括@Joe 关于非规范或部分路径名的想法
string fullPath = @"C:\Windows\System32\WindowsPowerShell\v1.0\Examples\profile.ps1";
string toMatch = @"C:\Win";
string result = string.Empty;
string temp = Path.GetDirectoryName(Path.GetFullPath(fullPath));
string[] p1 = temp.Split('\\');
string[] p2 = Path.GetFullPath(toMatch).Split('\\');
for(int x = 0; x < p1.Length; x++)
{
if(x >= p2.Length || p1[x] != p2[x])
result = string.Concat(result, "\\", p1[x]);
}
在这种情况下,我假设部分匹配应被视为不匹配。还请查看@Joe 对部分或非规范路径问题的回答