I was wondering how can i combine "mystring" to "url"
string mystring = "com";
wstring url = L"
http://www.google.";
in java it could simply be
http://www.google. +mystring;
but it not work thay way here. please help
Last edited on
If using std::string, the + operator, allows concantenation with other literal strings.
EDIT: I though this was the case but I can't find it in the reference for some reason. If that doesn't work, try append();.
Last edited on