Regan Heath wrote: > Pragma Wrote: >> What you want is an associative array: >> >> char[char[]] myMap; > > minor correction: > > char[] [char[]] myMap; > > Regan > Which is a mistake that's a lot harder to make with a little alias magic. Easier to read the intent as well. alias char[] string; string[string] myMap; --bb