ContainsStrRegex
ContainsStrRegex( value, pattern )
Description
The ContainsStrRegex
function returns true
when the value
string
matches the pattern
regular expression, or false
when it does not.
Returns
Returns a boolean: true
when value
matches the pattern
regular
expression, or false
when it does not.
Examples
The following query demonstrates the case where the value
string
matches the pattern
regular expression:
client.query(
q.ContainsStrRegex('Fauna', '(Fa|na)')
)
.then((ret) => console.log(ret))
true
The following query demonstrates the case where the value
string
does not match the pattern
regular expression:
client.query(
q.ContainsStrRegex('Fauna', '.Faa*')
)
.then((ret) => console.log(ret))
false
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
documentation@fauna.com
Thank you for your feedback!