文字列からテキストを削除し、各行を空白行に置き換えます。
背景: 2つの文字列を比較するcompare関数を作成しています。そのすべてが正常に動作し、2つの別々のWebブラウザに表示されます。ブラウザで下にスクロールしようとすると、文字列の長さが異なります。削除するテキストを空白行に置き換えて、文字列の長さが同じになるようにします。
以下のコードでは、aDiff.Textの行数を数えようとしています。
これが私のコードです:
public string diff_prettyHtmlShowInserts(List<Diff> diffs)
{
StringBuilder html = new StringBuilder();
foreach (Diff aDiff in diffs)
{
string text = aDiff.text.Replace("&", "&").Replace("<", "<")
.Replace(">", ">").Replace("\n", "<br>"); //¶
switch (aDiff.operation)
{
case Operation.DELETE:
//foreach('\n' in aDiff.text)
// {
// html.Append("\n"); // Would like to replace each line with a blankline
// }
break;
case Operation.EQUAL:
html.Append("<span>").Append(text).Append("</span>");
break;
case Operation.INSERT:
html.Append("<ins style=\"background:#e6ffe6;\">").Append(text)
.Append("</ins>");
break;
}
}
return html.ToString();
}