﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
328	Faster string manipulation with use of ASCII decimal values.	SmOke_N	Valik	"StringSplitASCII(""String"") or StringToASCII(""String"")

Return an array of ASCII decimal values.

And for the conversion of an ASCII array something like StringASCIIStr(avArray).

{{{
Global $aSTA = StringSplitASCII(""My String"")
Global $sConvert = """"

;Output of Array values:
;$aSTA[0] = 77
;$aSTA[1] = 121
;$aSTA[2] = 32
;$aSTA[3] = 83
;$aSTA[4] = 116
;$aSTA[5] = 114
;$aSTA[6] = 105
;$aSTA[7] = 110
;$aSTA[8] = 103
;$aSTA[9] = 0 ; doubt this should be accessible

$aSTA[4] = 0
$sConvert = StringASCIIStr($aSTA)
ConsoleWrite($sConvert & @CRLF)

;Should give the output of ""My S"".
}}}
I suppose you could add parameters such as start position and end position for those manipulating large strings.

With some of the slower string functions ... this would be a welcomed new addition."	Feature Request	closed	3.2.13.6	AutoIt		None	Completed		
