Qt、QTextEdit:如何删除最后一个字符?

发布于 2024-09-06 02:02:46 字数 200 浏览 4 评论 0原文

我在 C++ GUI 应用程序中使用 QTextEdit,我使用 textEdit->append(byteArray);要添加一些文本,不幸的是,append() 在末尾添加了一个新行字符,我想在每次调用append() 后删除该字符。我知道我可以使用 insertPlainText() ,它不会添加新行字符,但在处理大文档时它会使用更多内存。

感谢您的帮助!

I am using a QTextEdit in my C++ GUI application, I use textEdit->append(byteArray); to add some text, unfortunately append() adds a new line character at the end that I would like to remove after each call of append(). I know I could use insertPlainText() which does not add a new line character but it uses a lot more memory when dealing with big documents.

Thanks for your help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七分※倦醒 2024-09-13 02:02:46

由于 QTextEdit::insertPlainText 的文档说

相当于

edit->textCursor().insertText(text);

我假设你可以做类似的事情

edit->textCursor().deletePreviousChar();

如果你需要,你可以首先清除任何选择

edit->textCursor().clearSelection();

Since the documentation for QTextEdit::insertPlainText says

It is equivalent to

edit->textCursor().insertText(text);

I would assume that you can just do something like

edit->textCursor().deletePreviousChar();

If you need to you can first clear any selection with

edit->textCursor().clearSelection();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文