find_first_of() searches for the first occurrence of ANY character from the search string in the target string. For example, "hello".find_first_of("aeiou") returns 1 (position of 'e'). It's different from find() which looks for an exact substring match.