Skip to content

Commit c69e853

Browse files
committed
Proofread
1 parent 938cfd5 commit c69e853

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

content/en/docs/refguide/modeling/domain-model/oql/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,11 @@ OQL is under constant development so some expressions and features are not avail
4646
| DATEPARSE | 11.10.0 |
4747
| DATETRUNC | 11.9.0 |
4848
| LOCATE | 11.9.0 |
49+
| LTRIM | 11.11.0 |
50+
| RTRIM | 11.11.0 |
4951
| STRING_AGG in View Entities and Datasets | 11.2.0 |
5052
| SUBSTRING | 11.9.0 |
53+
| TRIM | 11.11.0 |
5154

5255
### [OQL Statements](/refguide/oql-statements/){#statement-versions}
5356

content/en/docs/refguide/modeling/domain-model/oql/oql-expression-syntax.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1334,7 +1334,7 @@ This query can no longer take advantage of an index for `LastName` for compariso
13341334

13351335
### LTRIM{#ltrim}
13361336

1337-
Removes leading characters from a `string`. If no `character` is specified for trimming, space is used.
1337+
Removes one or more leading characters from a `string`. If no character is specified for trimming, space is used.
13381338

13391339
{{% alert color="info" %}}
13401340
This function was introduced in Mendix version 11.11.0.
@@ -1354,7 +1354,7 @@ LTRIM ( expression [, character ] )
13541354

13551355
##### character
13561356

1357-
`character` is an optional single character string expression containing the character to trim. If omitted, the space character is used instead.
1357+
`character` is an optional single character string expression containing the character to remove from the start of the string. If omitted, the space character is used instead.
13581358

13591359
{{% alert color="info" %}}
13601360
Only a single character is supported. `character` parameters with more than one character may not work in all supported databases.
@@ -1555,7 +1555,7 @@ SELECT ROUND((Price : 7), 2) as RoundedPrice, Price : 7 FROM Sales.Order
15551555

15561556
### RTRIM{#rtrim}
15571557

1558-
Removes trailing characters from a `string`. If no `character` is specified for trimming, space is used.
1558+
Removes one or more trailing characters from a `string`. If no `character` is specified for trimming, space is used.
15591559

15601560
{{% alert color="info" %}}
15611561
This function was introduced in Mendix version 11.11.0.
@@ -1575,7 +1575,7 @@ RTRIM ( expression [, character ] )
15751575

15761576
##### character
15771577

1578-
`character` is an optional single character string expression containing the character to trim. If omitted, the space character is used instead.
1578+
`character` is an optional single character string expression containing the character to remove from the end of the string. If omitted, the space character is used instead.
15791579

15801580
{{% alert color="info" %}}
15811581
Only a single character is supported. `character` parameters with more than one character may not work in all supported databases.
@@ -1650,7 +1650,7 @@ ORDER BY LastName LIMIT 1
16501650

16511651
### TRIM{#trim}
16521652

1653-
Removes leading and trailing characters from a `string`. If no `character` is specified for trimming, space is used.
1653+
Removes one or more leading and trailing characters from a `string`. If no `character` is specified for trimming, space is used.
16541654

16551655
{{% alert color="info" %}}
16561656
This function was introduced in Mendix version 11.11.0.
@@ -1670,7 +1670,7 @@ TRIM ( expression [, character ] )
16701670

16711671
##### character
16721672

1673-
`character` is an optional single character string expression containing the character to trim. If omitted, the space character is used instead.
1673+
`character` is an optional single character string expression containing the character which will be removed from the beginning and end of the string. If omitted, the space character is used.
16741674

16751675
{{% alert color="info" %}}
16761676
Only a single character is supported. `character` parameters with more than one character may not work in all supported databases.

0 commit comments

Comments
 (0)