Skip to content

Instantly share code, notes, and snippets.

@sandrock
sandrock / StringTransformer.AddHtmlLineBreaks
Created September 6, 2012 08:29
Inserts HTML line breaks (<br />) before all newlines
public static class StringTransformer
{
/// <summary>
/// Inserts HTML line breaks (&lt;br /&gt;) before all newlines.
/// </summary>
/// <param name="text">text containing lines</param>
/// <returns></returns>
public static string AddHtmlLineBreaks(this string text)
{