You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`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.
1358
1358
1359
1359
{{% alert color="info" %}}
1360
1360
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
1555
1555
1556
1556
### RTRIM{#rtrim}
1557
1557
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.
1559
1559
1560
1560
{{% alert color="info" %}}
1561
1561
This function was introduced in Mendix version 11.11.0.
`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.
1579
1579
1580
1580
{{% alert color="info" %}}
1581
1581
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
1650
1650
1651
1651
### TRIM{#trim}
1652
1652
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.
1654
1654
1655
1655
{{% alert color="info" %}}
1656
1656
This function was introduced in Mendix version 11.11.0.
@@ -1670,7 +1670,7 @@ TRIM ( expression [, character ] )
1670
1670
1671
1671
##### character
1672
1672
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.
1674
1674
1675
1675
{{% alert color="info" %}}
1676
1676
Only a single character is supported. `character` parameters with more than one character may not work in all supported databases.
0 commit comments