Quote:
Originally Posted by chaley
"Contains" uses regex patterns, so use an anchored pattern
Code:
contains(field('#readinglist'), '^interesting$', 'y', ''),
|
An explanation:
- ^: Beginning of line
- $: End of line
In this case, as it is only a value, it matches.