Tagged Questions
The wstring tag has no wiki summary.
121
votes
11answers
38k views
std::wstring VS std::string
I am not able to understand the differences between std::string and std::wstring. I know wstring supports wide characters such as Unicode characters. I have got the following questions:
When should ...
15
votes
5answers
874 views
What is the optimal multiplatform way of dealing with Unicode strings under C++?
I know that there are already several questions on StackOverflow about std::string versus std::wstring or similar but none of them proposed a full solution.
In order to obtain a good answer I should ...
8
votes
2answers
2k views
Does C++0x support std::wstring conversion to/from UTF-8 byte sequence?
I saw that C++0x will add support for UTF-8, UTF-16 and UTF-32 literals. But what about conversions between the three representations ?
I plan to use std::wstring everywhere in my code. But I also ...
6
votes
2answers
319 views
Android NDK C++ 'wstring' support
I have source code/lib written in C++ - now i would like to compile and use the same in Android NDK project (NDK 6). I am able to compile most of the C++ files except "std::wstring" based ...
6
votes
6answers
3k views
c++ : How to convert wstring into string?
The question is how to convert wstring to string?
I have next example :
#include <string>
#include <iostream>
int main()
{
std::wstring ws = L"Hello";
std::string s( ws.begin(), ...
6
votes
8answers
2k views
How to portably write std::wstring to file?
I have a wstring declared as such:
// random wstring
std::wstring str = L"abcàdëefŸg€hhhhhhhµa";
The literal would be UTF-8 encoded, because my source file is.
[EDIT: According to Mark Ransom this ...
6
votes
5answers
3k views
Case insensitive std::string.find()
I am using std::string's find() method to test if a string is a substring of another. Now I need case insensitive version of the same thing. For string comparison I can always turn to stricmp() but ...
6
votes
5answers
3k views
Confused about C++'s std::wstring, UTF-16, UTF-8 and displaying strings in a windows GUI
I'm working on a english only C++ program for Windows where we were told "always use std::wstring", but it seems like nobody on the team really has much of an understanding beyond that.
I already ...
6
votes
3answers
3k views
5
votes
5answers
513 views
Arguments for and against supporting std::wstring exclusively in cross-platform library
I'm currently developing a cross-platform C++ library which I intend to be Unicode aware. I currently have compile-time support for either std::string or std::wstring via typedefs and macros. The ...
5
votes
3answers
1k views
Which wide-character string structure do I use? CString vs wstring
I have an MFC application in C++ that uses std::string and std::wstring, and frequently casts from one to the other, and a whole lot of other nonsense. I need to standardize everything to a single ...
4
votes
3answers
144 views
UTF8 scrambling during c++ file loading
I know loading unicode is a somewhat laboured point, but I can't see how to apply the solutions presented to others to my particular problem.
I have a Win7/C++/DirectX9 GUI library which can render ...
4
votes
3answers
225 views
Problem with getline and “strange characters”
I have a strange problem,
I use
wifstream a("a.txt");
wstring line;
while (a.good()) //!a.eof() not helping
{
getline (a,line);
//...
wcout<<line<<endl;
}
and it ...
4
votes
1answer
371 views
How to print wstring on Linux/OS X?
How can I print a string like this: €áa¢cée£ on the console/screen? I tried this:
#include <iostream>
#include <string>
using namespace std;
wstring wStr = L"€áa¢cée£";
int main ...
4
votes
3answers
979 views
Solution for missing std::wstring support in Android NDK?
I have a game which uses std::wstring as its basic string type in thousand of places as well as doing operations with wchar_t and its functions: wcsicmp() wcslen() vsprintf(), etc.
The problem is ...
4
votes
2answers
253 views
String class allocating on stack for small strings?
Do anyone know if there is a STL interface compatible string class that allocates memory for small strings on the stack (up to a certain threshold) and the heap for larger strings ?
I'm looking to ...
4
votes
3answers
2k views
3
votes
2answers
125 views
How Exactly Do I Deal With Japanese Characters in C++?
I'm trying to do something as simple as this:
#include <iostream>
#include <string>
using namespace std;
int main()
{
wstring nihongo = L"みんなのにほんご";
wcout << nihongo ...
3
votes
2answers
177 views
Handling UTF-8 in C++
To find out if C++ is the right language for a project of mine, I wanna test the UTF-8 capabilities. According to references, I built this example:
#include <string>
#include <iostream>
...
3
votes
3answers
145 views
How to iterate over unicode characters in C++?
I know that to get a unicode character in C++ I can do:
std::wstring str = L"\u4FF0";
However, what if I want to get all the characters in the range 4FF0 to 5FF0? Is it possible to dynamically ...
3
votes
2answers
90 views
Does boost::variant work with std::string?
I've written a simple program in C++ with use of boost::variant. Program's code is presented below.
#include <string>
#include <iostream>
#include <boost/variant.hpp>
...
3
votes
2answers
150 views
c++ - How do I tell a wstring that a string I am feeding it is already a wstring?
I am using a std::string as a text buffer. Then, I am sure the data contained in that buffer is UTF-16 (i.e. it is really a std::wstring). How can I coerce a std::string into a std::wstring? The ...
3
votes
3answers
2k views
read unicode file into wstring
How can I read a unicode (utf-8) file into wstring (s) on the windows platform?
3
votes
4answers
4k views
C++ Convert string (or char*) to wstring (or wchar_t*)
string s = "おはよう";
wstring ws = FUNCTION(s, ws);
How would i assign the contents of s to ws?
Searched google and used some techniques but they can't assign the exact content. The content is ...
2
votes
3answers
48 views
Init and print std::wstring
I had the code:
std::string st = "SomeText";
...
std::cout << st;
and that worked fine. but now my team want to move to wstring.
so i tried:
std::wstring st = "SomeText";
...
std::cout ...
2
votes
2answers
145 views
Qt and VS C++ dll function returning value
I'm trying to get std::string/std::wstring returned value from connected DLL in Qt and I having problem with this.
code from DLL:
using namespace std;
extern "C++" __declspec(dllexport) string ...
2
votes
2answers
171 views
How can I use wstring(s) in Linux APIs?
I want to develope an application in Linux. I want to use wstring beacuse my application should supports unicode and I don't want to use UTF-8 strings.
In Windows OS, using wstring is easy. beacuse ...
2
votes
1answer
95 views
How to make my `std::string url_encode_wstring(const std::wstring &input)` work on Linux?
So we have such function:
std::string url_encode_wstring(const std::wstring &input)
{
std::string output;
int cbNeeded = WideCharToMultiByte(CP_UTF8, 0, input.c_str(), -1, ...
2
votes
1answer
196 views
Boost serialize only first character of std::wstring
I'm using boost to serialize with the text archive an std::wstring variable. If I switch to std::string it works very well but when I use wstring I get only one character serialized. Why?
...
2
votes
3answers
1k views
Convert wstring to string encoded in UTF-8
I need to convert between wstring and string. I figured out, that using codecvt facet should do the trick, but it doesn't seem to work for utf-8 locale.
My idea is, that when I read utf-8 encoded ...
2
votes
1answer
215 views
Can't instantiate an istring_iterator using a wistringstream
I'm trying to split a string using the method found in this thread, but I'm trying to adapt it to a wstring. However, I have stumbled upon a weird error. Check the code:
#include <iostream>
...
2
votes
4answers
864 views
Why doesn't wstring::c_str cause a memory leak if not properly deleted
Code Segment 1:
wchar_t *aString()
{
wchar_t *str = new wchar[5];
wcscpy(str, "asdf\0");
return str;
}
wchar_t *value1 = aString();
Code Segment 2
wstring wstr = L"a value";
...
2
votes
2answers
663 views
How to concatenate 2 LPOLESTR
i want to concatenate 2 strings in c++, i can't use char*.
I tried the following but doesn't work:
#define url L"http://domain.com"
wstring s1 = url;
wstring s2 = L"/page.html";
wstring s = s1 + s2;
...
2
votes
2answers
501 views
Conversion from string to wstring is causing ú to lose encoding
The variable filepath which is a string contains the value Música. I have the following code:
wstring fp(filepath.length(), L' ');
copy(filepath.begin(), filepath.end(), fp.begin());
fp then ...
2
votes
2answers
564 views
String to wstring conversion on OS X
I'm trying to convert a C++ string to a wstring.
I found the following code, that seems to deal with accents, which is what I'm looking for.
std::wstring widen(const std::string& s)
{
...
2
votes
5answers
2k views
Portable wchar_t in C++
Is there a portable wchar_t in C++? On Windows, its 2 bytes. On everything else is 4 bytes. I would like to use wstring in my application, but this will cause problems if I decide down the line to ...
1
vote
2answers
49 views
How do I convert from a wchar_t* to a wstring?
Or how to I initialize a wstring using a wchar_t*?
I tried something like this, but it's not quite working.
I'm given an LPVOID and it points to a wchar_t pointer.
I just want to get it into a ...
1
vote
3answers
88 views
How do I convert a std::wstring to an LSA_UNICODE_STRING
Today I was able to write a simple C++ program that granted a user the "Log on as a service" privilege. Part of this involved converting between a LPCWSTR and an LSA_UNICODE_STRING. The code to do ...
1
vote
1answer
80 views
CreateProcess fails when passed a path converted from std::string to wstring
I have been spending 2 hours trying to get my path string read from a .ini file to work with the CreateProcess function, which expects a LPCWSTR. For some reason, no matter how I do it, it just will ...
1
vote
2answers
138 views
Looking for the cheapest way to use std::wstring with NSLog
I have a library which uses wstring extensively. I need to output changes and external data using NSLog Is there a simple way (not too expensive) to output the wstring using an intermediate function.
...
1
vote
2answers
130 views
How to read a std::wstring written in linux into windows
We have a program which runs on Windows and Linux. It writes out std::wstrings in binary to a file. We need to be able to read in files written from linux into windows. We write out strings as a list ...
1
vote
2answers
153 views
Convert string to wstring, encoding issues
I've read Stroustrup's Appendix D (particular attention to Locales and Codecvt). Stroustrup does not give a good codecvt and widen example (IMHO). I've been trying to knob turn stuff from the internet ...
1
vote
2answers
262 views
How to convert wstring to LPOLESTR?
The below is the one that I have tried and it did not work.
std::wstring = L"Text";
USES_CONVERSION;
LPOLESTR lpDesc = W2OLE((LPWSTR)wsDescr.c_str());
Please any one cany say what is the better way ...
1
vote
3answers
176 views
Adding a TCHAR to a wstring: doesn't work
I have something pretty simple to do, I am trying to prompt the user for character input & save that character onto a string. Then I print that whole string.
The program is for windows but I want ...
1
vote
2answers
102 views
Running a console command which is stored in `std::wstring`
I have a console command, something like:
std::wstring ConsoleCommand;
ConsoleCommand = L"c:\\somepath\\anotherpath\\program.exe -opt1 /opt2 --opt3";
I want to execute this command.
How do I do it?
...
1
vote
2answers
724 views
wstring -> LPCWSTR in ShellExecute give me error LNK2028 & LNK2019
Hello I'm programming in Visual C++ 2010 (spanish) with UNICODE and /clr. I have a header file called "fileFuncs.h":
#include <iostream>
#include <fstream>
#include <string>
...
1
vote
3answers
376 views
Similar conversion in overloading wstring and wchar_t *
I have following code:
inline bool match(const std::wstring & text1, const std::wstring & text2)
{
return match(text1.c_str(), text2.c_str());
}
inline bool match(const std::wstring ...
1
vote
2answers
782 views
c++ convert from UTF-8 to wstring using iconv
I have a c++ linux application which runs the following:
int main()
{
using namespace std;
char str[] = "¡Hola!";
wchar_t wstr[50];
size_t rc;
memset(wstr, 0, sizeof(wstr));
rc = ...
1
vote
3answers
115 views
how to check if corba::WString is empty?
Searched for this everywhere and finally came here. I have a CORBA::WString_var as input parameter to my function. How do I know if it's empty?
1
vote
1answer
350 views
Unable to write a std::wstring into wofstream
I'm using Qt/C++ on a Linux system. I need to convert a QLineEdit's text to std::wstring and write it into a std::wofstream. It works correctly for ascii strings, but when I enter any other character ...