Page 1 of 1

printf equivalents

Posted: Wed Apr 24, 2013 8:16 pm
by enric
PrintStringLiteral("\n") ; works for a new line
but
PrintStringLiteral("\t") ; don't seem to work

Is there any arguments to format text?
Is there a TAB argument?
Is there a way to ask for the length of a string?

The objective is to show a list of strings and values like a table:

name1 (tab) 12 (tab) 23 (tab) 2
name2 (tab) 11 (tab) 26 (tab) 12
etc.

Re: printf equivalents

Posted: Wed Apr 24, 2013 8:40 pm
by pipfromslitherine
No - there aren't any string wrangling functions like that. You are probably best using a seperate renderstring for each element.

Cheers

Pip