Mysql like clause equivalent with XPath

juxhin

New Member
I need the equivalent of the following sql query:selecting all films with a title starting with 'V' followed with 3 characters and then a space followed by a string (e.g Van Helsing)\[code\]SELECT * FROM films WHERE title LIKE ="V__ %";\[/code\]How can i do this an xpath 1.0 expression in a tree like films/film/title, xpath 1.0 because i'll use php with xslt.Thank you
 
Back
Top