sql:like( $input as xs:string?, $pattern as xs:string, $escape as xs:string ) as xs:boolean?
Returns true
if the specified $input like the specified
$pattern, otherwise returns false
.
sql:like("this string", "id%") => false sql:like("this", "t%i_") => true
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.