Support Board
Date/Time: Sat, 20 Dec 2025 13:07:20 +0000
Post From: C++ std::string to SCString
| [2020-08-26 12:06:11] |
| User907968 - Posts: 860 |
|
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());
|
