0
我試圖在第二個縮進代碼中插入一個縮進的代碼,使用第一個縮進作爲基礎。C#RegExp縮進和換行
我的意思是,第二個縮進必須從第一個末尾開始。
縮進我得到正確的工作,但它增加了一些不受歡迎的換行符,我需要避免。
這裏是代碼的例子,我不會發布實際的代碼,因爲字符串是動態構建的,有些我是從文本文件中獲取的。
所以我把它分開放在一起以便於理解。
STRING與
<div class="form-item">
<div class="form-item-label inline" ><span></span></div>
<input type="text" value="" >
</div>
字符串替換WHERE替換
<div id="formFiltro" class="form-filtro">
<fieldset>
<legend>Filtros</legend>
<-'REPLACE_HERE'->
</fieldset>
</div>
期望的結果
<div id="formFiltro" class="form-filtro">
<fieldset>
<legend>Filtros</legend>
<div class="form-item">
<div class="form-item-label inline" ><span></span></div>
<input type="text" value="" >
</div>
</fieldset>
</div>
MY未遂
// newCode = string to replace with
// code = string where replacing
string pattern = "\r\n|\r|\n"; // Replace line breaks with "$1" to be used on the second replace
newCode = Regex.Replace(newCode, pattern, @"$1");
pattern = @"([\s\t]*)(<-'REPLACE_HERE'->)"; //Copy default identation for new code while keeping "<-'REPLACE_HERE'->" on the original position
code = Regex.Replace(codigo, pattern, String.Format(@"$1$2$1{0}", newCode));
我得到了什麼提前
<div id="formFiltro" class="form-filtro">
<fieldset>
<legend>Filtros</legend>
<div class="form-item">
<div class="form-item-label inline" ><span></span></div>
<input type="text" value="" >
</div>
</fieldset>
</div>
感謝。
所以,你想我們修復你的正則表達式,但你不會發布你的正則表達式?大問! – Polyfun