From 0c54ac0b3cc83e72ad40913b3229ff02923243d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20J=C3=BClg?= Date: Wed, 24 Apr 2024 08:38:13 +0200 Subject: [PATCH] fix(docs): Function calls regex example (#2306) This fixes a wrong example of usage of the "regexmatch" function in the function call documentation. According to https://blacksmithgu.github.io/obsidian-dataview/reference/expressions/ the usage should be regexmatch(regex, str) --- docs/docs/reference/expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/reference/expressions.md b/docs/docs/reference/expressions.md index 1a030e27..238c59ed 100644 --- a/docs/docs/reference/expressions.md +++ b/docs/docs/reference/expressions.md @@ -175,7 +175,7 @@ TABLE id, episode_metadata.next, aliases[0] Dataview supports various functions for manipulating data, which are described in full in the [functions documentation](../functions). They have the general syntax `function(arg1, arg2, ...)` - i.e., `lower(file.name)` or -`regexmatch(file.folder, "A.+")`. +`regexmatch("A.+", file.folder)`. ~~~ ```dataview