我在剃刀,這代碼(.cshtml文件):Html.Raw多替換
<div class="category">
@Html.Raw(Model.CategoryLinks(" | ").Replace("Fotogallery", ""))
</div>
我想更換不僅是 「Fotogallery」 用NULL,還包括其他3個值:
- 「videogallery」「musicgallery」
我該怎麼辦?你能幫我嗎?
我在剃刀,這代碼(.cshtml文件):Html.Raw多替換
<div class="category">
@Html.Raw(Model.CategoryLinks(" | ").Replace("Fotogallery", ""))
</div>
我想更換不僅是 「Fotogallery」 用NULL,還包括其他3個值:
我該怎麼辦?你能幫我嗎?
string.Replace()
返回與替換字符串,這樣你就可以調用鏈,如:
@Html.Raw(Model.CategoryLinks(" | ").Replace("Fotogallery", "").Replace("videogallery", "").Replace("musicgallery", ""))
Thanksssss 但怎麼能離開這個符號 「|」 例如 「FOTOGALLERY |音樂| SPORT」 我想更換FOTOGALLERY和|與「」 只看到「音樂|運動」 謝謝你 – fabry19dice
我想要替換不僅「Fotogalley」,而且「|」,但如果我做替換(「Fotogallery |」,「」)不工作! – fabry19dice
http://mattgemmell.com/what-have-you-tried/ –
不能代替任何部分與NULL的字符串。你想用空字符串('「」')替換它。 – ataravati
Yess(「」)對不起! – fabry19dice