How to handle string larger 256 asci chars?

 

Hello Everybody,

i wanna use a http post that returns a string (JSON) ... what do i have to do if the returned string is larger than 256 chars?

Thanks for any advice!

 
Why do you think you have to do anything?
 
Because in the Documentation it says that string variables only hold 256 chars ... ?!?
 

No, the documentation says that a string CONSTANT can only be 256. (The part between the quotes.)

 
WHRoeder:

No, the documentation says that a string CONSTANT can only be 256. (The part between the quotes.)

Check this code for your confidence

string s = "0123456789";
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s;
s = s+s; 
Print(StringLen(s)); 2^16 * 10 = 655360
 
Ok, thank you very much, i should have tried it before asking! ;-)