如何将RichTextBox内容交换为HTML

时间:2019-03-26 13:47:18

标签: html wpf richtextbox

我想将RichTextBoxContents交换为HTML。

我使用了aspose.word,但它是演示版本。 例如) enter image description here

1 个答案:

答案 0 :(得分:0)

这应该指导您一个大致的方向:

my name is dharshini
my dad name is uday
my anniversay is on 04/01/1997

应该给你这样的东西:

string output = "";
Foreach( line in richtextbox.text)
{
  output += $"<p style=\"color:{line.color.name};\">"
  output += line
  ouput += "</p>";
}

我在打电话,所以如果语法有点偏离,请留意