From 8a23c9d4ccf99e6135faef46a8fe08c8d0b87fa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20P=C3=A9rez?= Date: Mon, 21 Oct 2024 20:36:43 +0100 Subject: [PATCH] chore: add commented reg_exp example with escape slash --- config.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.toml b/config.toml index 6a7f7cb..9b05eba 100644 --- a/config.toml +++ b/config.toml @@ -1,6 +1,8 @@ be_quiet = false [[targets]] input = "input.txt" +# \ has to be escaped +reg_exp = "(\\d+) (\\w+) (\\d+)" [[targets]] input = "input_2.txt"