RTF - 在哪里可以找到文本内容?

RTF - Where can I find the text content?

我正在查询 MSSQL 服务器以获取一些信息,我得到以下信息:

{\rtf1\ansi\ansicpg1251\deff0\nouicompat
    {\fonttbl
        {\f0\fnil\fcharset204 Calibri;}
        {\f1\fnil Calibri;}
    }

我知道这是RTF,但是我找不到内容,应该是这样的:

ПЕЧАТЕЊЕ ЗА ВУРТ

这是如何工作的?以上如何生成文本?

You are right. I ran the query in SSMS and I got the same value. However, when I copied and pasted it in notepad, it displayed the full content. It does appear to have a limit on the characters. How can I increase the limit to display the full thing?

右键单击查询 window,然后选择 options。以下对话框允许指定文本的最大长度。允许的最大值为 8192。

The data also has new lines. Does that affect anything?

<ctrl>+T 从 "Results to Grid" 切换到 "Results to Text"。这会将整个内容写为文本,您会看到换行符(在网格内换行符被省略)

提示将您的SELECT减少到只有一个文本栏!