Skip to content

Commit 93b83e9

Browse files
committed
Add documentation for str_contain()/str_equal()/str_match() Fix conditionals. (#246)
1 parent cd7ec69 commit 93b83e9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -735,6 +735,10 @@ Executes the functions if/unless the field contains the value. If it is an array
735735

736736
Executes the functions if/unless the field does not contain the value. If it is an array or a hash none of the field values may contain the string.
737737

738+
##### `str_contain`
739+
740+
Executes the functions if/unless the first string contains the second string.
741+
738742
#### `equal`
739743

740744
##### `all_equal`
@@ -749,6 +753,10 @@ Executes the functions if/unless the field value equals the string. If it is an
749753

750754
Executes the functions if/unless the field value does not equal the string. If it is an array or a hash none of the field values may equal the string.
751755

756+
##### `str_equal`
757+
758+
Executes the functions if/unless the first string equals the second string.
759+
752760
#### `exists`
753761

754762
Executes the functions if/unless the field exists.
@@ -781,6 +789,10 @@ Executes the functions if/unless the field value matches the regular expression
781789

782790
Executes the functions if/unless the field value does not match the regular expression pattern. If it is an array or a hash none of the field values may match the regular expression pattern.
783791

792+
##### `str_match`
793+
794+
Executes the functions if/unless the string matches the regular expression pattern.
795+
784796
## Xtext
785797

786798
This repo has been originally set up with [Xtext](https://www.eclipse.org/Xtext/) 2.17.0 and Eclipse for Java 2019-03, following [https://www.eclipse.org/Xtext/documentation/104_jvmdomainmodel.html](https://www.eclipse.org/Xtext/documentation/104_jvmdomainmodel.html).

0 commit comments

Comments
 (0)