Support Board
Date/Time: Wed, 05 Nov 2025 05:17:55 +0000
Post From: C++ std::string to SCString
| [2020-08-26 12:06:11] |
| User907968 - Posts: 847 |
|
You could use string::c_str function - https://www.cplusplus.com/reference/string/string/c_str/ Also, give the SCString objects different names to the std::string objects. SCString sDate = date.c_str();
or SCString sDate(date.c_str());
|
