We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c6cb0e commit 97f7f92Copy full SHA for 97f7f92
docs/The-Expression-Syntax.md
@@ -94,15 +94,15 @@ life < universe or life < everything
94
To test if a string does *not* match a regex, use the logical `not` operator in combination with the `matches` operator:
95
96
```coffeescript
97
-not ("foo" matches "^bar")
+not ("foo" matches "^b.+")
98
```
99
100
You must use parenthesis because the unary operator `not` has precedence over the binary operator `matches`.
101
102
Example:
103
104
105
-'Arthur' ~ ' ' ~ 'Dent'
+'Arthur' + ' ' + 'Dent'
106
107
108
Result will be set to `Arthur Dent`.
0 commit comments