﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1833	_arraydisplay : elements longer than 4094 bytes are like empty elements	436602556274@…	Jpm	"array elements longer than 4094 bytes displayed like empty strings. Even other long elements don't fit on screen, are only truncated, but elements > 4094 look like empty elements. See ListView of code below: 
{{{
#include <array.au3>
Dim $A [6][2]	; Array of strings, col 0 is only for documentation
; col 1 is the string
dim $s_long = ""XXXXXXXXXX"" ; build a very long string
$s_long = StringReplace($s_long,""X"",""XXXXXXXXXX"") ;  100 bytes
$s_long = stringreplace($s_long,""X"",""XXXXXXXXXX"") ;1,000 -,,-
$s_long = StringReplace($s_long,""X"",""XXXXX"")	  ;5,000 -,,- long
$A[1][0] = 4093
$A[1][1] =stringleft($s_long,$A[1][0])
$A[2][0] = 4094
$A[2][1] =stringleft($s_long,$A[2][0])
$A[3][0] = 4095
$A[3][1] =stringleft($s_long,$A[3][0])
$A[4][0] = 4096
$A[4][1] =stringleft($s_long,$A[4][0])
$A[5][0] = 0
$A[5][1] = """"
_arraydisplay($A)
#cs
Col 0 is the length of  col 1 element
but with one-dimensional array hapens the same,
Col 0 is hopefuly helpful at display
#ce
}}}
In case of one-dimensional array you can't see any difference between empty and long elements. During test of RegExp gave me fatal information.
I'm not sure if this is bug or documentation request so feel free to change this status. I think it's more bug then any limitation and/or documentation problem.





"	Bug	closed	3.3.7.0	Standard UDFs	3.3.6.1	None	Fixed		
