The fn:contains function determines whether a string contains a specific substring. The search string is matched using the default collation.
>>-fn:contains(string,substring)-------------------------------><
string has the xs:string data type, or is the empty sequence. If string is the empty sequence, string is set to a string of length 0.
substring has the xs:string data type, or is the empty sequence.
The length of substring is limited to 32000 bytes.
fn:contains('Test literal','lite')
The returned value is true.