如何简化以下代码?目的是突出显示'<>'之间的文字&安培; '{}':
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。
感谢。