我正在运行 asp.net MVC 剃须刀。我正在尝试从我的视图中的字符串中删除引号。
所以我要退回这个
"<p><strong>test</strong</p>"
and my wanting this
<p><strong>test</strong></p>
这是我尝试过的:
@foreach (var post in Model)
{
var cont = post.postContent.Trim('"');
<div class="post">
<h2>@Html.ActionLink(post.postTitle, "Details", "Home", new { id = post.postId }, null)</h2>
@cont
<p>@post.postDate</p>
</div>
}