To access a particular character in that string, I would write code like this:
Code: Select all
if char 5 of myArray["identity"] is "X" then ...
Code: Select all
if myArray["identity"][5] is "X" then ...
I've not been able to find a small test case to demonstrate this. So my conclusion is that this code might not cause an error, but it always yields empty as a result, and, coincidently, empty was an acceptable value at that point in my project.
Is there another explanation?