Exercise 4.3: Character Exclusion

Given: an array of characters, chr_array;
Compose: a loop that returns an array of the characters from chr_array that are either alphabetic characters or the space character.
for char in chr_array
returns array of char when (char >= 'A' & char <= 'z') | char = ' '
end for


Previous Section