Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add STR_LENGTH, STR_MATCHES and STR_SUBSTRING #498

Merged
merged 7 commits into from
Sep 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add docs for STR_LENGTH and STR_MATCHES
  • Loading branch information
HSGamer committed Sep 9, 2024
commit 298718b43d4afe472124f2f7f8c1fe95de2e5dfa
2 changes: 2 additions & 0 deletions docs/references/functions.md
Original file line number Diff line number Diff line change
@@ -42,6 +42,8 @@ Available through the _ExpressionConfiguration.StandardFunctionsDictionary_ cons
| STR_STARTS_WITH(string, substring) | Returns true if the string starts with the substring (case-sensitive) |
| 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 |

### Trigonometric Functions