diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-01-08 13:14:40 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-01-08 13:14:57 +0100 |
commit | 413b86050e364db51eb4f1bb095f70b141c02919 (patch) | |
tree | c46bbbfdb3aeafbd27b487ae051441da2085e876 /examples/example_csv.toml | |
parent | 9473b2c009961d2e66a31673c38831b59528b706 (diff) |
Updated the examples
Diffstat (limited to 'examples/example_csv.toml')
-rw-r--r-- | examples/example_csv.toml | 4 |
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])" ] |