Skip to content

Commit

Permalink
alphabet order in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
HSGamer committed Sep 16, 2024
1 parent e719fb6 commit 51e12cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/references/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ Available through the _ExpressionConfiguration.StandardFunctionsDictionary_ cons
| STR_CONTAINS(string, substring) | Returns true if the string contains the substring (case-insensitive) |
| STR_ENDS_WITH(string, substring) | Returns true if the string ends with the substring (case-sensitive) |
| STR_FORMAT(format [,argument, ...]) | Returns a formatted string using the specified format string and arguments, using the configured locale |
| STR_LENGTH(string) | Returns the length of the string |
| STR_LOWER(value) | Converts the given value to lower case |
| STR_MATCHES(string, pattern) | Returns true if the string matches the RegEx pattern |
| STR_STARTS_WITH(string, substring) | Returns true if the string starts with the substring (case-sensitive) |
| STR_SUBSTRING(string, start[, end]) | Returns a substring of the given string, starting at the _start_ index and ending at the _end_ index (the end of the string if not specified) |
| STR_TRIM(string) | Returns the given string with all leading and trailing space removed. |
| STR_UPPER(value) | Converts the given value to upper case |
| STR_LENGTH(string) | Returns the length of the string |
| STR_MATCHES(string, pattern) | Returns true if the string matches the RegEx pattern |
| STR_SUBSTRING(string, start[, end]) | Returns a substring of the given string, starting at the _start_ index and ending at the _end_ index (the end of the string if not specified) |

### Trigonometric Functions

Expand Down

0 comments on commit 51e12cc

Please sign in to comment.