我試圖在@Html.DisplayNameFor(model => model.Password)
內替換model => model.Password
子字符串。正則表達式幫助需要
正則表達式模板我使用的任何線索?
我試過\\(.+?\\)
這是正確的嗎?
謝謝!
var match = Regex.Match(view, @"@Html.DisplayNameFor(\\(.+?\\))", RegexOptions.IgnoreCase);
if (match.Success)
{
}
這是真棒兄弟! +100 –