Is there a way in B4A to create an array from a range, specifically letters? I can loop through the integers fine, but need to create arrays of varying lengths using letters. (C,D,E,F,G)
Converting a PHP site, and looking for a way to duplicate the following without typing it out
$arr = array_merge(range(0, 9), range("B", "Z"), range("g", "z"));
Thanks
Converting a PHP site, and looking for a way to duplicate the following without typing it out
$arr = array_merge(range(0, 9), range("B", "Z"), range("g", "z"));
Thanks