Skip to content

Instantly share code, notes, and snippets.

@alber70g
Last active August 29, 2015 14:14
Show Gist options
  • Save alber70g/4c02c557a26051dd0909 to your computer and use it in GitHub Desktop.
Save alber70g/4c02c557a26051dd0909 to your computer and use it in GitHub Desktop.
var allowed = new string[] {"<b>", "</b>", "<strong>", "</strong>", "<em>", "</em>"};
var tekst = "Dit is mijn tekst met een <b>dikgedrukte tekst</b>";
var nieuweTekst = tekst;
for (int tagNumber = 0; tagNumber < allowed.Length; tagNumber++)
{
nieuweTekst = nieuweTekst.Replace(allowed[tagNumber], "{" + tagNumber + "}");
}
nieuweTekst = HttpUtility.HtmlEncode(nieuweTekst);
nieuweTekst = string.Format(nieuweTekst, allowed);
Assert.AreEqual(tekst, nieuweTekst);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment