Find the strings that match "Earth". Return a logical array where the position of each element equal to 1 corresponds to the position of a matching string in str.
TF = matches(str,"Earth")
TF = 1x4 logical array
0 0 1 0
Display the match by indexing back into str using TF.