Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9250887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T10:33:26+00:00 2026-06-18T10:33:26+00:00

I have a string that I have retrived from an html page using boost’s

  • 0

I have a string that I have retrived from an html page using boost’s regex_search(). Unfortunately, however, the japanese characters in the page are written as \u codes, and these are interpreted by regex_search as normal characters in a string.

So, my question is, how does one go about converting these codes to normal Unicode text? (UTF-8 obviously)

This is a fundamental issue with fstream having absolutely no regard for UTF-8. It looks like boost has its own implementation of fstream, but changing to it had no effect on my program, and I couldn’t find any extra settings to configure boost’s fstream to work with UTF-8 (although today is my first day ever working with boost, I could have missed it).

As a final note: I’m running this on linux, but I’d certainly appreciate a portable solution over a system-specific one.

Thanks all, I really appreciate the help 😀

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T10:33:28+00:00Added an answer on June 18, 2026 at 10:33 am

    fstream is a narrow-character only stream (it’s a typedef to basic_fstream<char>). std::wfstream would be the type you’re looking for, although to be perfectly portable to, for example, Windows, you may have to introduce C++11 dependencies (Windows has no Unicode locales, but supports locale-independent Unicode conversions introduced by C++11. GCC on Linux doesn’t support the new Unicode conversions, but has plenty of Unicode locales to choose from) or rely on boost.locale.

    Your steps would be:

    1. parse the string to obtain the hexadecimal values of the code points
    2. store them as wide characters.
    3. write them to a std::wofstream (or convert to UTF-8 first, and then write to std::ofstream)

    To illustrate the last step:

    #include <fstream>
    #include <locale>
    int main()
    {
        std::locale::global(std::locale("en_US.utf8")); // any utf8 works
        std::wofstream f("test.txt");
        f.imbue(std::locale());
    
        f << wchar_t(0x65e5) << wchar_t(0x672c) << wchar_t(0x8a9e) << '\n';
    }
    

    produces a file (on Linux) that contains e6 97 a5 e6 9c ac e8 aa 9e 0a

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have string that look like Array that fetched from other webservice like this
I have string that displays UTF-8 encoded characters, and I want to convert it
I have a string that contains HTML image elements that is stored in a
I am trying to populate an HTML table using the JSON string retrieved from
So you have a String that is retrieved from an admin web UI (so
I have developed an application which displays Hebrew strings that are retrived from a
I have a piece of template HTML that is returned from a Javascript function:
I have a String that holds the string representation of a byte value. String
I have a String that looks like this String = Förpackning Flaska (375 ml)
I have a string that looks like this: <name>-<gender>-<age>.jpg I want to be very

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.