namespace WebsitePanel.WebDav.Core.Extensions { public static class StringExtensions { public static string ReplaceLast(this string source, string target, string newValue) { int index = source.LastIndexOf(target); string result = source.Remove(index, target.Length).Insert(index, newValue); return result; } } }