You can first break the line up with the words:
var result = "Ben Stiller".Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries) .Any(x => x.StartsWith("Sti"));
Of course, you could write this as your own extension method, for example:
public static bool AnyWordStartsWith(this string input, string test) { return input.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries) .Any(x => x.StartsWith(test)); }
source share