aboutsummaryrefslogtreecommitdiff
path: root/examples/example_csv.toml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-01-08 13:14:40 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-01-08 13:14:57 +0100
commit413b86050e364db51eb4f1bb095f70b141c02919 (patch)
treec46bbbfdb3aeafbd27b487ae051441da2085e876 /examples/example_csv.toml
parent9473b2c009961d2e66a31673c38831b59528b706 (diff)
Updated the examples
Diffstat (limited to 'examples/example_csv.toml')
-rw-r--r--examples/example_csv.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/example_csv.toml b/examples/example_csv.toml
index 1374515..5586750 100644
--- a/examples/example_csv.toml
+++ b/examples/example_csv.toml
@@ -19,13 +19,13 @@ version = 1
[sheet]
columns = [
":A",
- "concat(\"-\", :A, :target.E, :B)",
+ "join('-', :A, :target.E, :B)",
":C",
"""counter(
[:C],
[:A])""",
":E",
- "match(\"\\(..\\)\", :B)",
+ "match('(..)', :B)",
":D",
"counter([:D] ,[:A])"
]