sql.glob

sql.glob(
   input as String?,
   pattern as String
) as Boolean?

Summary

Returns true if the specified $input glob the specified $pattern, otherwise returns false.

Parameters
input The input from which to match.
pattern The expression to match. '?' matches one character and '*' matches any number of characters.

Example

  sql:glob("this", "t*i?")

  => true

  sql:glob("this string", "id*")

  => false
  
Powered by MarkLogic Server | Terms of Use | Privacy Policy