使用控制字符
Contents
[
Hide
]
Microsoft Word 文档可能包含各种具有特殊含义的字符。通常它们用于格式化目的并且不在正常模式下绘制。如果单击标准工具栏上的显示/隐藏格式标记按钮,可以使它们可见。
有时您可能需要在文本中添加或删除字符。例如,当以编程方式从文档中获取文本时,Aspose.Words 会保留大部分控制字符,因此如果您需要使用此文本,您可能应该删除或替换这些字符。
ControlChar 类是常量的存储库,这些常量表示文档中经常遇到的控制字符。它提供相同常量的字符和字符串版本。例如,字符串 LineBreak 和字符 LineBreakChar 具有相同的值。
以下代码示例展示了如何使用控制字符:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET | |
string text = "test\r"; | |
// Replace "\r" control character with "\r\n" | |
text = text.Replace(ControlChar.Cr, ControlChar.CrLf); |