please send me n example for string concatination using ACE
ACE_CString..

thanks.

Recommended Answers

All 4 Replies

ACE_CString s1 ("hello");
ACE_CString s2 ("world");

s1+=s2;

I am also not aware about ACE but but as Moschops gave the solution it sems that it is similar to standard c++

ACE_CString &operator+= (const ACE_CString &);

Concat operator (copies memory).

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.