Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正規表現に問題があります!
ファイルリンク ""file:\\" を "file:\" に変更したいのですが、この解決策では、他のすべてのスラッシュを殺すためできません。
"file:\\mail\attach\2015_02\ランダムなファイル名" このファイルへのリンクは文字列変数です。
アイデアや他の解決策はありますか?どうも!
正規表現を使用する必要がある場合
const string originalPath = @"file:\\mail\attach\2015_02\random file name"; var newPath = Regex.Replace(originalPath, @"file:\\{2}(.+)", @"file:\$1"); Console.WriteLine(newPath);
このDotNetFiddle を試してください