Преобразование RTF в HTML UseNumericCharacterReference на C# и .NET
Ссылка на числовой символ (NCR) - это распространенная конструкция разметки, используемая в SGML и других языках разметки, связанных с SGML, таких как HTML и XML. Он состоит из короткой последовательности символов, которые, в свою очередь, представляют собой один символ из универсального набора символов (UCS) Unicode.
В случае 'true': Запишите все символы в обозначении "NCR": xx;. В случае 'false': Запишите все символы в формате Unicode (рекомендуется). Значение по умолчанию: false.
Полный код
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using SautinSoft;
namespace Example
{
class Program
{
static void Main(string[] args)
{
UseNumericCharacterReference();
}
/// <summary>
/// This sample shows how to use Numeric Character Reference.
/// </summary>
static void UseNumericCharacterReference()
{
// Get your free 100-day key here:
// https://sautinsoft.com/start-for-free/
// If you need more information about "RTF to HTML .Net"
// Email us at: support@sautinsoft.com.
string inpFile = @"..\..\..\utf-8.rtf";
string outFile = @"Result.html";
RtfToHtml r = new RtfToHtml();
RtfToHtml.HtmlFlowingSaveOptions opt = new RtfToHtml.HtmlFlowingSaveOptions()
{
UseNumericCharacterReference = true,
Title = "UseNumericCharacterReference"
};
try
{
r.Convert(inpFile, outFile, opt);
}
catch (Exception ex)
{
Console.WriteLine($"Conversion failed! {ex.Message}");
}
// Open the result.
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outFile) { UseShellExecute = true });
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Linq
Imports System.Text
Imports System.IO
Imports SautinSoft
Namespace Example
Friend Class Program
Shared Sub Main(ByVal args() As String)
UseNumericCharacterReference()
End Sub
''' <summary>
''' This sample shows how to use Numeric Character Reference.
''' </summary>
Private Shared Sub UseNumericCharacterReference()
' Get your free 100-day key here:
' https://sautinsoft.com/start-for-free/
' If you need more information about "RTF to HTML .Net"
' Email us at: support@sautinsoft.com.
Dim inpFile As String = "..\..\..\utf-8.rtf"
Dim outFile As String = "Result.html"
Dim r As New RtfToHtml()
Dim opt As New RtfToHtml.HtmlFlowingSaveOptions() With {
.UseNumericCharacterReference = True,
.Title = "UseNumericCharacterReference"
}
Try
r.Convert(inpFile, outFile, opt)
Catch ex As Exception
Console.WriteLine($"Conversion failed! {ex.Message}")
End Try
' Open the result.
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outFile) With {.UseShellExecute = True})
End Sub
End Class
End Namespace
Если вам нужен пример кода или у вас есть вопрос: напишите нам по адресу support@sautinsoft.com или спросите в онлайн-чате (правый нижний угол этой страницы) или используйте форму ниже: