Why does StringBuilder.AppendLine not add a new line with some strings?

后端 未结 6 870
耶瑟儿~
耶瑟儿~ 2021-01-03 17:43

I\'m trying to use stringbuilder to create a body of string to be used in a text (not HTML) email. However some lines (where i include dynamic data, a new line is not added,

相关标签:
6条回答
  • 2021-01-03 18:24

    use Environment.NewLine

    sbUser.AppendLine("Please find below confirmation of your registration details. If any of these details are incorrect, please email someone@somewhere.com");
    sbUser.AppendLine(Environment.NewLine);
    sbUser.AppendLine("Selected event : " + ContentPage.FetchByID(int.Parse(ddlEvent.SelectedValue)).PageTitle); 
    sbUser.AppendLine("Date of event : " + thisEvent.EventStartDate.ToString("dd MMM yyyy"));
    sbUser.AppendLine("==============================================================");
    sbUser.AppendLine(Environment.NewLine);
    
    0 讨论(0)
  • 2021-01-03 18:28

    I know the question is old and has been marked as answered, but I thought I'd add this here in case anyone else comes across this as it's the first hit on Google for StringBuilder.AppendLine() not working.

    I had the same problem and it turned out to be an Outlook issue. Outlook re-formats text based emails by removing extra line breaks. You can click "We removed extra line breaks in this message -> Restore line breaks" in the header of the individual email, or change the setting that does this nasty little trick "Options->Mail->Message Format->Remove extra line breaks in plain text messages"

    The workaround (since you can't control the settings on every potential email target) I found here Newsletter Formatting And The Remove Extra Line Breaks Issue. Basically, if you add two white space characters to the beginning of each line, Outlook won't reformat the email.

    Here's an extension method to help (method name is a bit verbose so change to your liking :))

    namespace System.Text
    {
        public static class StringBuilderExtensions
        {
            public static void AppendLineWithTwoWhiteSpacePrefix(this StringBuilder sb, string value)
            {
                sb.AppendFormat("{0}{1}{2}", "  ", value, Environment.NewLine);
            }
    
            public static void AppendLineWithTwoWhiteSpacePrefix(this StringBuilder sb)
            {
                sb.AppendFormat("{0}{1}", "  ", Environment.NewLine);
            }
        }
    }
    
    0 讨论(0)
  • 2021-01-03 18:30

    Windows 10 Insider preview Build 15007. The Default Line Terminator and the Environment.NewLine are both "\n". To use "\r\n" I had to create a string constant and use it instead.

    0 讨论(0)
  • 2021-01-03 18:31

    First sbUser.Appendline();

    Second sbUser.Append("texto loco ");

    Voila!

    =)

    0 讨论(0)
  • 2021-01-03 18:37

    use Environment.NewLine after each line or where you want new line

    eg:-

      sbUser.AppendLine("Please find below confirmation of your registration details. If any of these details are incorrect, please email someone@somewhere.com" + Environment.NewLine);
      sbUser.AppendLine("Selected event : " + ContentPage.FetchByID(int.Parse(ddlEvent.SelectedValue)).PageTitle); 
    
    0 讨论(0)
  • 2021-01-03 18:47

    Instead of

    sbUser.AppendLine();
    

    Try using

    sbUser.Append(Environment.NewLine);
    

    No idea why this works...

    0 讨论(0)
提交回复
热议问题