Break On
$ = SetOption('CaseSensitivity', 'On')
; Define the array, load it with all printable ASCII chars, from Space on
Dim $A[95]
For $X = 0 to 95
$A[$X] = Chr($X + 32)
Next
; Find the index of the lower case "a"
$P = AScan($A, "a", "", 0)
; Display the pointer, and the contents of that array element
'Ptr: ' $P ' (Ascii code ' $P + 32 ') Contents: ' $A[$P] ?