我正在尋找最有效的方法來獲取字符串的一部分,並使用HTML註釋作爲開始/結束點。返回帶註釋標記的字符串部分
因此,例如,我想用
<!-- START: Variable -->
stuff goes here
<!-- END: Variable -->
該字符串應該只是東西在評論之間。我做了一個幫手,但對.net來說不是很好。
@helper readPattern(string filepath, string patternSection = null) {
TextReader tr = new StreamReader(filepath);
string SplitBy = "<!-- START: "+patternSection+" -->";
string fullLog = tr.ReadToEnd();
fullLog.Trim().StartsWith("<!-- " + patternSection+ " -->");
//string[] sections = fullLog.Split(new string[] { SplitBy }, StringSplitOptions.RemoveEmptyEntries);
<div class="@patternSection">@fullLog</div>
}
我不需要拆呢,我只需要輸出或由我通過這個助手的意見修剪。
你可以使用子串2次 –