Tagged Questions
`wchar_t` is a fundamental data type in the C and C++ programming languages, and it stands for "wide character". Its intended use is to hold any character value from "the system's character set".
33
votes
10answers
9k views
Is TCHAR still relevant?
I'm new to Windows programming and after reading the Petzold book I wonder:
is it still good practice to use the TCHAR type and the _T() function to declare strings or if I should just use the ...
16
votes
4answers
827 views
WChars, Encodings, Standards and Portability
The following may not qualify as a SO question; if it is out of bounds, please feel free to tell me to go away. The question here is basically, "Do I understand the C standard correctly and is this ...
7
votes
4answers
605 views
Cross-platform strings (and Unicode) in C++
So I've finally gotten back to my main task - porting a rather large C++ project from Windows to the Mac.
Straight away I've been hit by the problem where wchar_t is 16-bits on Windows but 32-bits on ...
6
votes
3answers
3k views
How I can print the wchar_t values to console?
Example:
#include <iostream>
using namespace std;
int main()
{
wchar_t en[] = L"Hello";
wchar_t ru[] = L"Привет"; //Russian language
cout << ru
<< endl
...
5
votes
2answers
803 views
conflicts: definition of wchar_t string in C++ standard and Windows implementation?
From c++2003 2.13
A wide string literal has type “array of n const wchar_t” and has static storage duration, where n is the size of the string as defined below
The size of a wide string ...
5
votes
1answer
320 views
Writting Unicode Characters to an OStream
I'm working with unicode/wide characters and I'm trying to create a toString method (Java ::toString equiv). Will ostream handle wide characters, if so is there a way to warn the consumer of the ...
5
votes
2answers
186 views
C++: Is there any good way to read/write without specifically stating character type in function names? (cout vs wcout, etc)
I'm having a problem getting a program to read from a file based on a template, for example:
bool parse(basic_ifstream<T> &file)
{
T ch;
locale loc = file.getloc();
...
5
votes
4answers
553 views
Outputting unicode characters in windows terminal
Over the past week I've been working on a roguelike game in C++ along with a friend. Mostly too learn the language.
I'm using:
pdcurses
Windows 7
Visual studio C++
To output wchar_t's wherever I ...
4
votes
3answers
187 views
Print wchar to Linux console?
My C program is pasted below. In bash, the program print "char is ", Ω
is not printed. My locale are all en_US.utf8.
#include <stdio.h>
#include <wchar.h>
#include <stdlib.h>
int ...
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
3answers
293 views
Is there a wchar_t version for asprintf?
I need a C function which returns the final length of a formatted string so I can properly allocate the target string, rather than calculate the length myself. There is snprintf which does just this ...
4
votes
6answers
897 views
isalpha equivalent for wchar_t
what is the equivalent function for isalpha or isalnum using wchar_t?
wctype ?
an example would be nice also
thanks
4
votes
6answers
2k views
Is wchar_t just a typedef of unsigned short?
for example, does:
wchar_t x;
translate to:
unsigned short x;
4
votes
3answers
1k views
Is endian conversion required for wchar_t data?
In C/C++, if a multi-byte wide character (wchar_t) value is transmitted from a big-endian system to a little-endian system (or vice-versa), will it come out the same value on the other side? Or will ...
4
votes
4answers
16k views
I want to convert std::string into a const wchar_t *
Is there any method?
My computer is AMD64,
::std::string str;
BOOL loadU(const wchar_t* lpszPathName, int flag = 0);
when I used:
loadU(&str);
the VS2005 compiler says:
Error 7 error ...
4
votes
4answers
1k views
How to convert (not neccessarily programatically) between Windows' wchar_t and GCC/Linux one?
Suppose I have this Windows wchar_t string:
L"\x4f60\x597d"
and
L"\x00e4\x00a0\x597d"
and would like to convert it (not neccessarily programatically; it will be a one-time thing) to GCC/Linux ...
4
votes
2answers
710 views
Wide exec for C/C++
Is there a wchar_t version of exec[lv][pe]* (i.e. an exec that uses wchar_t as path and wchar_t as arguments)?
In Windows, I can just do CreateProcessW(process, cmdline), but in *nix, I'm stuck (i.e. ...
3
votes
2answers
149 views
Opening a Unicode file in pure C
I am trying to open a .txt file that is wholly Chinese. Can I use normal fopen/fclose procedures to it even though the stream would be 100% Unicode or are there any exlusive tools for handling wide ...
3
votes
1answer
87 views
What does the minus in /Zc:wchar_t- mean?
Recently I had some linking issues caused by the presence (or absence) of this flag.
/Zc:wchar_t-
I've read the docs, but they don't mention the trailing minus. But every discussion of it seems ...
3
votes
3answers
123 views
C Ansi Unicode problem
I'm using the win32 api for C in my program to read from a serial port, it seems to be pretty low level stuff. Assuming that there is no better way of reading from a serial port, the CreateFile ...
3
votes
5answers
833 views
Why isn't wchar_t widely used in code for Linux / related platforms?
This intrigues me, so I'm going to ask - for what reason is wchar_t not used so widely on Linux/Linux-like systems as it is on Windows? Specifically, the Windows API uses wchar_t internally whereas I ...
3
votes
2answers
1k views
QChar to wchar_t
I need to convert a QChar to a wchar_t
I've tried the following:
#include <cstdlib>
#include <QtGui/QApplication>
#include <iostream>
using namespace std;
int main(int argc, ...
3
votes
3answers
532 views
How to convert wchar_t** to char**?
I get argv as wchar_t** (see below), because I need to work with unicode, but I need to convert it to char **. How can I do that?
int wmain(int argc, wchar_t** argv)
{
3
votes
2answers
7k views
get length of `wchar_t*` in c++
Please, how can I find out the length of a variable of type wchar_t* in c++?
code example below:
wchar_t* dimObjPrefix = L"retro_";
I would like to find out how many characters dimObjPrefix ...
3
votes
5answers
665 views
Unexpected output of std::wcout << L“élève”; in Windows Shell
While testing some functions to convert strings between wchar_t and utf8 I met the following weird result with Visual C++ express 2008
std::wcout << L"élève" << std::endl;
prints out ...
3
votes
5answers
6k views
How do you efficiently copy BSTR to wchar_t[]?
I have a BSTR object that I would like to convert to copy to a wchar__t object. The tricky thing is the length of the BSTR object could be anywhere from a few kilobytes to a few hundred kilobytes. Is ...
2
votes
3answers
87 views
Comparing 2 wchar_t arrays
I'm sure this is sooo simple but I've come from a c# background where strings are easy and now I am making a small trip into the unmanaged world I am very confused.
Essentially I am using ...
2
votes
3answers
148 views
char vs wchar_t
I'm trying to print out a wchar_t* string.
Code goes below:
#include <stdio.h>
#include <string.h>
#include <wchar.h>
char *ascii_ = "中日友好"; //line-1
wchar_t *wchar_ = L"中日友好"; ...
2
votes
5answers
583 views
Convert wchar_t to int
how can I convert a wchar_t ('9') to a digit in the form of an int (9)?
I have the following code where I check whether or not peek is a digit:
if (iswdigit(peek)) {
// store peek as numeric
}
...
2
votes
3answers
1k views
Problem converting char to wchar_t (length wrong)
I am trying to create a simple datastructure that will make it easy to convert back and forth between ASCII strings and Unicode strings. My issue is that the length returned by the function mbstowcs ...
2
votes
2answers
138 views
proper style for interfacing with legacy TCHAR code
I'm modifying someone else's code which uses TCHAR extensively. Is it better form to just use std::wstring in my code? wstring should be equivalent to TString on widechar platforms so I don't see an ...
2
votes
2answers
1k views
How to convert concatenated strings to wide-char with the C preprocessor?
I am working on a project where I have many constant strings formed by concatenation (numbers, etc.).
For example, I have a LOCATION macro that formats __FILE__ and __LINE__ into a string that I can ...
2
votes
4answers
1k views
static_cast wchar_t* to int* or short* - why is it illegal?
In both Microsoft VC2005 and g++ compilers, the following results in an error:
On win32 VC2005: *sizeof(wchar_t) is 2*
wchar_t *foo = 0;
static_cast<unsigned short *>(foo);
Results in
error ...
2
votes
5answers
2k views
How do I read Unicode-16 strings from a file using POSIX methods in Linux?
I have a file containing UNICODE-16 strings that I would like to read into a Linux program. The strings were written raw from Windows' internal WCHAR format. (Does Windows always use UTF-16? e.g. in ...
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
63 views
Vector won't store correct datatype (wchar_t instead of uint16_t)
I have some code from the net reading hyperspectral data (image, so lots of integers giving pixel intensity) into a vector. I used the code with success on a Linux system, but now I need the same on a ...
1
vote
1answer
54 views
C CSV API for unicode
I need a C API for manipulating CSV data that can work with unicode. I am aware of libcsv (sourceforge.net/projects/libcsv), but I don't think that will work for unicode (please correct me if I'm ...
1
vote
2answers
169 views
wprintf UTF16 (should be UTF8) on Linux?
1 It's really strange that wprintf show 'Ω' as 3A9 (UTF16), but wctomb convert
wchar to CEA9 (UTF8), my locale is default en_US.utf8. As man-pages said,
they should comform to my locale, but wpritnf ...
1
vote
2answers
105 views
wchar_t array passed into function
I am making a C program on windows using visual studio 2010.
I am passing a wchar_t array to a function.
//in main
wchar_t bla[1024] = L"COM6";
mymethod(bla);
static void mymethod(wchar_t *bla) {
...
1
vote
1answer
95 views
Using iconv while maintaining code correctness
I'm currently using iconv to convert documents with different encodings.
The iconv() function has the following prototype:
size_t iconv (
iconv_t cd,
const char* * inbuf,
size_t * inbytesleft,
...
1
vote
1answer
98 views
Getting the length of a formatted string from wsprintf
When using standard char* strings, the snprintf and vsnprintf functions will return the length of the output string, even if that string was truncated due to overflow.* It seems like the ISO C ...
1
vote
2answers
108 views
C Wide characters - how to use them?
I'm able to output a single character using this code:
#include <locale.h>
#include <stdio.h>
#include <wchar.h>
main(){
setlocale(LC_CTYPE, "");
wchar_t a = L'Ö';
putwchar(a);
}
...
1
vote
1answer
429 views
Is it possible to use UTF-8 encoding by default in Visual Studio 2008? [closed]
Possible Duplicate:
How to create a UTF-8 string literal in Visual C++ 2008
Is it possible to force Visual Studio to use UTF-8 encoding for all strings by default?
For example have
...
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
0answers
388 views
Converting wchar_t to Char
I need to convert:
wchar_t arr[20][32]
To
char arr[20][32]
The conversion is done in the DLL (written in C++) and I want the values of arr to be displayed to the user in Windows Forms (written ...
1
vote
1answer
156 views
Problem with Unicode in C++ exe (MSVC++2010)
I have a strange problem which I don't know where it came from. I might have changed some settings in the MSVC++2010 project but it all looks good to me.
I'm currently experimenting with the ...
1
vote
3answers
394 views
array of wchar_t
I would like to have an array of wchar_t's.
The following works:
char** stringArray;
int maxWords = 3;
stringArray = new char*[maxWords];
stringArray[0] = "I";
stringArray[1] = " Love ";
...
1
vote
2answers
711 views
wchar_t is 2-bytes in visual studio and stores UTF-16. How do Unicode-aware applications work with characters above U+FFFF?
We are at our company planning to make our application Unicode-aware, and we are analyzing what problems we are going to encounter.
Particularly, our application will for example rely heavily on ...
1
vote
6answers
247 views
Struct Not Accepting wchar_t
That's the only thing I can think of. The thing is sentient.
I have a struct as follows:
struct NumPair
{
wchar_t *pFirst, *pSecond;
int count;
with ctor, copy assignment and construction ...