Example: If the display name contains "Lambda (?)" then replace with "Lambda (λ").
I have four various substrings that I'm trying to replace
Here's the part of my stringbuilder code:
sb.Append("<div><a href=\"" + item.URLAliasName + "\" >" + (string.IsNullOrEmpty(item.DisplayName) ? " " : item.DisplayName) + "</a>"...
How do I replace "Lambda (?)" if contained inside item.DisplayName? It may be found anywhere in the display name.