使用替换功能突出显示ASP.NET中括号之间的测试

时间:2018-04-19 07:42:28

标签: asp.net

如何简化以下代码?目的是突出显示'<>'之间的文字&安培; '{}':

FormattedText = FormattedText.Replace("<", "<span class='background-color:#FFFF00;'>")
FormattedText = FormattedText.Replace(">", "</span>")
FormattedText = FormattedText.Replace("{", "<span class='background-color:#FFFF00;'>")
FormattedText = FormattedText.Replace("}", "</span>")

但是想避免使用RegExp。

感谢。

0 个答案:

没有答案