转义新行字符

时间:2012-11-25 15:53:50

标签: c# outlook newline icalendar

我正在尝试创建一个Outlook日历事件,但部分文字在outlook中消失。

private List<ICalEvent> _events;

public override void ExecuteResult(System.Web.Mvc.ControllerContext context)
{
    StringBuilder str = new StringBuilder();
    var _with1 = str;

    foreach (var _event in _events)
    {
        _with1.AppendLine("BEGIN:VCALENDAR");
        _with1.AppendLine("VERSION:2.0");
        _with1.AppendLine("BEGIN:VEVENT");
        _with1.AppendLine(string.Format("DTSTART:{0}", _event.start.ToUniversalTime().ToString("yyyyMMdd\\THHmmss\\Z")));
        _with1.AppendLine(string.Format("DTEND:{0}", _event.end.ToUniversalTime().ToString("yyyyMMdd\\THHmmss\\Z")));
        _with1.AppendLine(string.Format("SUMMARY:{0}", _event.summary));
        _with1.AppendLine(string.Format("DESCRIPTION:{0}", _event.description));
        _with1.AppendLine(string.Format("LOCATION:{0}", _event.location));
        _with1.AppendLine("END:VEVENT");
        _with1.AppendLine("END:VCALENDAR");
    }

    context.HttpContext.Response.ContentType = "text/calendar";
    context.HttpContext.Response.AddHeader("Content-disposition", string.Format("attachment; filename={0}", "newFile"));
    context.HttpContext.Response.Write(str.ToString());
}

description中有多行时,会出现问题。如果它包含文本“New \ r \ nLine”,例如我的Outlook日历描述中只会显示“新建”。 “\ r \ n”之后的部分消失。

我已经尝试了所有这些,但结果相同:

  • _event.description.Replace("\r\n", "\n\n")
  • _event.description.Replace("\\", "\\\\")
  • _event.description.Replace("\r\n", Environment.NewLine)

有人有类似的问题吗?

1 个答案:

答案 0 :(得分:3)

你需要在行的末尾写'= 0D = 0A'。