Could you be more specific about the problem that you're trying to solve?
Thank you!Excel interprets the "*" as a wild card character. So the cat* means, give me any text string that starts with "cat". Use:
=COUNTIF($A$1:$A$5,"cat~*")
=COUNTIF($A$1:$A$5,"cat")