32000 limit in strings is not true anymore...

You can have string MUCH longer than 32000 you just cant display them. but you can preform substr() commands on them jsut fine.

Also it seems that the limit of displaying a string is 26608 any thing longer than that will not be displayed.

Code:

dim $string[26608]
$string = join($string,'.')
? len($string)
? $string



Also this bit of code shows that the LEN if a sting looks to be limited by the ammount of ram, or 2,147,483,648... what ever happens first... my own system was only able to get a string len() of 33,554,432 before it ran out of ram and started crawling really slow! but the script was still running!

Code:
$string = '.'
while not @error
$string = $string + $string
? len($string)
loop