Skip to content

Commit 197913a

Browse files
Update functions_xls.md
1 parent be195a6 commit 197913a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/functions_xls.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ The following functions are used to create, modify, or analyze text strings in X
5353
| Function | Description |
5454
|:---------|:------------|
5555
| `concat()` | Concatenates one or more arguments (separated by commas) into a single string. |
56-
| `regex(string, expression)` | Returns `True` if the string is an exact and complete match for a <a href="https://support.kobotoolbox.org/restrict_responses.html">regular expression</a>. |
57-
| `contains(string, substring)` | Returns `True` if the string contains the substring. |
58-
| `starts-with(string, substring)` | Returns `True` if the string begins with the substring. |
59-
| `ends-with(string, substring)` | Returns `True` if the string ends with the substring. |
56+
| `regex(string, expression)` | Returns `TRUE` if the string is an exact and complete match for a <a href="https://support.kobotoolbox.org/restrict_responses.html">regular expression</a>. |
57+
| `contains(string, substring)` | Returns `TRUE` if the string contains the substring. |
58+
| `starts-with(string, substring)` | Returns `TRUE` if the string begins with the substring. |
59+
| `ends-with(string, substring)` | Returns `TRUE` if the string ends with the substring. |
6060
| `substr(string, start[, end])` | Returns the substring of `string` beginning at the index start and extending to (but not including) index end (or to the termination of `string`, if end is not provided). |
6161
| `substring-before(string, target)` | Returns the substring of `string` before the first occurrence of the target substring. If the target is not found, or `string` begins with the target substring, then this will return an empty string. |
6262
| `substring-after(string, target)` | Returns the substring of `string` after the first occurrence of the target substring. If the target is not found this will return an empty string. |

0 commit comments

Comments
 (0)