The widestring tag has no wiki summary.
0
votes
1answer
12 views
how to streamout wide string from richedit control?
This is my attempt and I don't know why EM_STREAMOUT returns question marks when encountering non-ascii chars.
This code copies text from window and put it back again but this time as question marks ...
2
votes
1answer
170 views
C++ consuming delphi DLL
I'm not able to use the function of a dll developed in delphi. I'm having some difficulties with the conversions of types.
This is the function I want to call the DLL:
function rData(ID: Cardinal; ...
1
vote
2answers
357 views
Delphi 7 calling DelphiXE2 dll getting corrupt widestrings
I have a Delphi 7 application that needs to call a SOAP API that is much too new for the available SOAP importers. I have satisfied myself that D7 can't call the SOAP API without too much effort to be ...
8
votes
3answers
483 views
How to display L“أَبْجَدِيَّة عَرَبِيَّة中文” using wcout?
I want to display an Arabic message mixed with Chinese using wcout.
The following code is OK:
#include <iostream>
using namespace std;
int main()
{
wcout.imbue(locale("chs"));
wcout ...
0
votes
1answer
75 views
narrowing conversion warning in boost's regex_traits_defaults.hpp when trying to initialize wregex object
The first line compiles ok. The second also produces working EXE, but in addition I get this large error:
In file included from d:\boost/boost/regex/v4/regex_traits.hpp:35:0,
from ...
0
votes
1answer
194 views
how to convert single-byte string to wide string in c++?
I know the encoding and that the input string is 100% single byte, no fancy encodings like utf etc. And all I want is to convert it to wchar_t* or wstring basing on a known encoding. What functions to ...
1
vote
1answer
212 views
How to unescape an escaped wide string in Delphi?
Some of my wide strings contains characters escaped with &#
For example:
The wide string source looks like: '   '
The converted result must be ' ' (3 blank spaces).
...
0
votes
1answer
266 views
template char/wchar_t, string/wstring, cout/wcout, regexp/wregex (or any possible workaround)
i'm dealing with char and wchar_t.
i'm writing an helper string class that put on some regular expressions (with boost) to some strings. but i have both string and wstring. now i have 2 function with ...
0
votes
2answers
426 views
What exactly is the L prefix in C++?
I understand what it does: specifies a string literal as a const wchar_t * (wide character string) instead of const char * (plain old characters), but how is it actually defined?
Is it a macro of ...
2
votes
2answers
164 views
fwprintf does not output wide characters
I want to output wide characters to a file, and fwprintf doesn't do it, even though it's described as doing just that. Sample code:
const char *testFileName = "/Users/jdmuys/wideTestFile.txt";
FILE ...
2
votes
1answer
121 views
Easiest Way to Transform a Wide String or Wide Character Array to a Simple Character Array?
My variable is in a specific internal implementation of a wide string but I can get it to be a wide character array quite easily. The problem is I need to feed it to a library function that will only ...
0
votes
1answer
149 views
How can I test my WideReplace function?
OS: Hungarian Windows (Windows 1250)
Under Delphi 6 Prof there is no WideStringPos, WideStringCopy, WideStringReplace...
But in an XML based project I need to use them.
Because that I tried to ...
0
votes
1answer
808 views
C++ Builder XE2: How to convert String to a wchar_t*
I have the SHBrowseForFolder to popup and work fine, but I would like to set the Title. I know it has to be a wchar_t* and when I use a const like (wchar_t*)L"My Title" the title is shown correct.
...
0
votes
1answer
47 views
How to print int to std::wcerr?
How do I write the output operator<< if my object needs to print a std::wstring as well as ints, etc?
#include <iostream>
struct Foo {
int i;
std::wstring wstr;
};
std::ostream& ...
1
vote
1answer
164 views
Program crashes as soon as I use widestring in C++
(Since I don't have enough reputation to answer my own question just yet, I'm gonna put it here first. I wasn't thinking straight when I posted it. It was 3AM for me, didn't occur to me to look ...
0
votes
1answer
596 views
c# : how to convert c# string to c++ wstring and vice-versa
c# code-
string s="おはよう";
I want to send s to c++ dll, as wstring..
how to convert string to wstring in c# ?
3
votes
3answers
225 views
How to access characters of a WideString by index?
i have the following code snippit that won't compile:
procedure Frob(const Grob: WideString);
var
s: WideString;
begin
s :=
...
1
vote
1answer
461 views
Definitions of: AnsiString, WideString, String, char[], char*, BSTR,
This is a followup to this question
AnsiString is a class, too? And string? It is a class? And a char[]?
Can we say a WideString is a wrapper over double-byte characters, AnsiString is a wrapper ...
13
votes
1answer
2k views
Why can Delphi DLLs use WideString without using ShareMem?
David's answer to another question shows a Delphi DLL function returning a WideString. I never thought that was possible without the use of ShareMem.
My test DLL:
function SomeFunction1: Widestring; ...
1
vote
2answers
552 views
How to deal with the Unicode characters in C++
We have a commenting system built into our engine that allows programmers to put comments for various exposed variables/objects which are then used by the GUI front-end for tool-tips and help.
...
1
vote
1answer
393 views
Converting a wstring to jstring on Linux
I'm having problems converting a wstring to jstring in unix, as the size of wchar_t on linux in 4 bytes (not 2 bytes like windows and thus I cannot use the casting of a wchar_t to a jchar).
Can ...
0
votes
1answer
894 views
how to correctly format WideString using sprintf or wprintf
I am using this code to format WideString but with no success! It prints unexpecting results :(
here is my code
WideString s;
dep=new TStringList();
while(!DM->tDepPln->Eof)
{
//where ...
5
votes
2answers
2k views
Delphi XE2 AnsiFormat() and ANSI String constants
Is there a handy Format() function that works only on Ansi strings? Because everytime I use an AnsiString with Format() I get a warning. And no, I don't want Delphi to convert my AnsiStrings back and ...
-2
votes
3answers
2k views
Delphi - Store WideStrings inside a program
In the past I used INI-Files to store Unicode text, but now I need to store unicode text in the same program. How can I achieve this result?
Want to store these letters:
āčēūīšķļņž
EDIT
Abiously ...
4
votes
3answers
472 views
How do i construct a WideString with a diacratic in a non-unicode Delphi version?
i am trying to construct a (test) WideString of:
á (U+00E1 Small Letter Latin A with acute)
but using it's decomposed form:
LATIN SMALL LETTER A (U+0061) COMBINING ACUTE ACCENT (U+0301)
...
1
vote
1answer
372 views
How does MSVC's STL open an fstream with a wide string filename? [duplicate]
Possible Duplicate:
Opening fstream with file with Unicode file name under Windows using non-MSVC compiler
I have been trying to find a simple way to open a file with non-ASCII characters ...
1
vote
1answer
271 views
Pantheios wide characters?
I'm trying to integrate logging into my Windows C++ application, and I wanted to use Pantheios, as it generally has very favorable comments. That said, all the examples included are using macros like ...
1
vote
2answers
134 views
Using narrow string manipulation functions on wide data
I'm parsing an XML file which can contain localized strings in different languages (at the moment its just english and spanish, but in the future it could be any language), the API for the XML parser ...
3
votes
3answers
1k views
2
votes
1answer
919 views
How to call this Delphi function from C#?
i'm having problems calling a delphi function from C# (attempted to read or write protected memory), and was wondering what the correct way of calling the method should be. The Delphi function ...
3
votes
1answer
140 views
Does boost test have support for wide strings?
I'm just using BOOST_TEST_MESSAGE(L"blah") and the only thing that is printed out is an hex value such as 0x12345678. Am I missing some configuration? I'm using boost 1.44.
2
votes
2answers
1k views
How can I make fixed-length Delphi strings use wide characters?
Under Delphi 2010 (and probably under D2009 also) the default string type is UnicodeString.
However if we declare...
const
s :string = 'Test';
ss :string[4] = 'Test';
... then the first string ...
1
vote
5answers
2k views
ReadLn working with WideString (utf-8 files)
I use delphi 7.
I need to read a utf-8 file line by line, each line contain a word and its weight (a number)
So I need to read every next line, then divide a line by a separator (tab char) and save ...
1
vote
5answers
828 views
How to return WideString from COM server?
This Interface at _TLB.pas file
// *********************************************************************//
// Interface: ITMyCOM
// Flags: (256) OleAutomation
// GUID: ...
2
votes
4answers
352 views
Sending TCHAR buffer with send(sock, wszBuffer, …)?
I have a wide-character XML message that I need to send over a Win32 socket in C++.
TCHAR wszBuffer[1024];
Should I sprintf(szSendBuffer, "%S", wszBuffer) the wide character buffer to a char array ...
3
votes
4answers
3k 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";
...
1
vote
5answers
811 views
What can cause SysFreeString to hit an Int 3 breakpoint?
I've got some code that worked fine under Delphi 2007 but breaks under D2010. It involves passing in a string, converting it to a PWideChar (specifically, a WideString pointer, not a UnicodeString ...
1
vote
1answer
852 views
How to cast wchar_t into int for displaying the code point?
I have a simple function in my program, when I was wanting to mess around with unicode and do stuff with it. In this function, I wished to display the code value of the character the user entered. It ...
4
votes
1answer
2k views
C++: wide characters outputting incorrectly?
My code is basically this:
wstring japan = L"日本";
wstring message = L"Welcome! Japan is ";
message += japan;
wprintf(message.c_str());
I'm wishing to use wide strings but I do not know how ...
0
votes
4answers
498 views
C++ template function specialization using TCHAR on Visual Studio 2005
I'm writing a logging class that uses a templatized operator<< function. I'm specializing the template function on wide-character string so that I can do some wide-to-narrow translation before ...
2
votes
5answers
2k views
Delphi: Fast(er) widestring concatenation
i have a function who's job is to convert an ADO Recordset into html:
class function RecordsetToHtml(const rs: _Recordset): WideString;
And the guts of the function involves a lot of wide string ...
4
votes
3answers
613 views
When and why can sprintf fail?
I'm using swprintf to build a string into a buffer (using a loop among other things).
const int MaxStringLengthPerCharacter = 10 + 1;
wchar_t* pTmp = pBuffer;
for ( size_t i = 0; i < nNumPlayers ...
0
votes
0answers
472 views
trouble with boost::filesystem::wrecursive_directory_iterator
I'm trying to write a program to help me manage my iTunes library, including removing duplicates and cataloging certain things. At this point I'm still just trying to get it to walk through all the ...
2
votes
4answers
2k views
2-byte (UCS-2) wide strings under GCC
when porting my Visual C++ project to GCC, I found out that the wchar_t datatype is 4-byte UTF-32 by default. I could override that with a compiler option, but then the whole wcs* (wcslen, wcscmp, ...
7
votes
2answers
1k views
Delphi 2010 Wide functions vs. String functions
We're currently converting a Delphi 2007 project to Delphi 2010. We were already using Unicode (via WideStrings and TNT Unicode Controls).
I was expecting to replace all Wide functions, e.g. ...
3
votes
3answers
978 views
Can we use wmain() functions with Unix compilers or it'll work only on windows?
Can we use wmain() functions with Unix compilers or it'll work only on\for windows?
1
vote
3answers
598 views
widestring compatibility problem in Delphi
In a dll build with Delphi 2006
Foo(aPath: widestring);
begin
_rootPath := aPath;
end;
In an executable built with Delphi 2010
_Foo := GetProcAddress(FooModule,’Foo’);
_Foo(‘123456’);
Stepping ...
0
votes
6answers
1k views
Delphi, string vs widestring memory usage issue, non-unicode VCL (D7)
I'm storing some classes with WideString parameters describing them (like name, description and some others). Now if I change all those WideStrings to simple "string" (I'm using alias actually so I ...
0
votes
3answers
193 views
Where is wctype in Visual C 2008 Express?
I'm porting 3rd party software from Linux to Windows using Visual C 2008 Express.
I have trouble only with function `wctype'. It's declared in %VCDIR%/include/wctype.h file as follow:
_MRTIMP2 ...
2
votes
4answers
3k views
How do I convert System::WideString to a char* in C++ and vice versa?
I have a situation where I need to compare a char* with a WideString. How do I convert the WideString to a char* in C++?