xtd
0.2.0
join.cpp
Shows how to use
xtd::ustring::join
method.
#include <xtd/console>
#include <xtd/ustring>
using namespace
xtd
;
auto
main()->int {
auto
result_str =
ustring::join
(
", "
, {
"One"
,
"Two"
,
"Three"
,
"Four"
,
"Five"
});
console::write_line
(result_str);
}
// This code produces the following output:
//
// One, Two, Three, Four, Five
Generated on Mon Oct 9 2023 14:41:56 for xtd by
Gammasoft
. All rights reserved.