Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Why "\n" become "e2 80 a9" while output to textstream
Qt 6.11 is out! See what's new in the release blog

Why "\n" become "e2 80 a9" while output to textstream

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 2.2k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jemyzhang
    wrote on last edited by
    #1

    @
    QTextCursor cursor(block);
    cursor.select(QTextCursor::BlockUnderCursor);
    QTextStream(file) << cursor.selectedText();
    @

    when I use the above code to select block into the text file, "\n" will become "e2 80 a9". and "e2 80 a9" is the return code in UTF-8. How can I convert the it back to "\n"?

    1 Reply Last reply
    0
    • C Offline
      C Offline
      Code_ReaQtor
      wrote on last edited by
      #2

      I encountered the same problem before while creating a code editor. I think (since I stopped coding it and never applied this solution) it is a paragraph separator [QChar::ParagraphSeparator]. Check "this":http://www.fileformat.info/info/unicode/char/2029/index.htm and look for the UTF-8 encoding.

      Please visit my open-source projects at https://github.com/Code-ReaQtor.

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved