Braces on String::Format

Hello, it's possible to use String::Format not like this String::Format("text{0}, text{1}", arg1, arg2);
but use like this?

String::Format("
text{1},
text{2}",
arg1,
arg2);
? i try it but this give me an error. thanks.
Like so:
1
2
3
4
5
String::Format(
"text{1},"
" text{2}",
arg1,
arg2);
aaah, thanks a lot :) this helped me when i want format long strings :)
Topic archived. No new replies allowed.