﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2611	"end paramter in ""StringFromASCIIArray"" is wrong"	Indi2Go	Matt Diesel	"Hello,
the help file for the ""end"" paramter of the function ""StringFromASCIIArray"" is following:
''end 	[optional] The 0-based index to end processing at (Default: UBound($aArray) - 1).''

But this isn't the behaveiour of the function.
Following code shows the different:

{{{
Local $a = StringToASCIIArray(""abcdef"")
Local $s = StringFromASCIIArray($a)
ConsoleWrite(""End=default: "" & $s & @crlf)
$s = StringFromASCIIArray($a,0,Ubound($a)-1)
ConsoleWrite(""End=(Ubound($a)-1): "" & $s & @crlf)
}}}

I get follwoing results:
End=default: abcdef
End=(Ubound($a)-1): abcde

So the end paramter isn't '0' - based? (or the help file is wrong?)

/Indi2Go

"	Bug	closed	3.3.11.3	Documentation	3.3.10.2	None	Fixed		
