
sql.glob( input as String?, pattern as String ) as Boolean?
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. |
sql:glob("this", "t*i?")
=> true
sql:glob("this string", "id*")
=> false
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.