Jump to content
Sign in to follow this  
Youpala

Increase format max char count

Recommended Posts

I noticed that the maximum character count the format command can output is 8191. Its a really annoying engine limitation as you can get a lot more with the + command.

 

A code to test in the debug console : 

a=[]; for "_i" from 1 to 5E4 do {a pushback 48};

a = toString a;
b = format["%1",a];

hint format ["Format command : %1 chars | Workaround : %2 chars",count b, count a];

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×