Prolog wildcard for completing a string
问题 I am currently stuck on a prolog problem. So far I have: film(Title) :- movie(Title,_,_). (Where ' movie(T,_,_,) ' is a reference to my database) namesearch(Title, Firstword) :- film(Title), contains_term(Firstword, Title). It is hard to explain what I need help on, but basically is there a wildcard I can use to search for all films starting with a specific word, for example, if I were to search for all films beginning with the word "The". Is there a wildcard which would allow me to input as