I am trying to get the value of the first letter in my array. For some reason its just chopping off my first letter. Will someone please tell me where I am going wrong?
<cfset MidInitial = "Hugh" />
<cfset MidInitArray = ReMatch("[a-z]",MidInitial) />
<cfdump var="#MidInitArray#" />
Array Hugh
[1] u
[2] g
[3] h
Where is the H going?!
left()?