From c29aed33163814638d97f13f73776690a6936fb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20P=C3=A9rez?= Date: Mon, 21 Oct 2024 20:39:45 +0100 Subject: [PATCH] chore: reg_exp example included --- assets/howto.md | 13 +++++++++++++ howto.md | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/assets/howto.md b/assets/howto.md index 2b1c77e..01cebc3 100644 --- a/assets/howto.md +++ b/assets/howto.md @@ -61,6 +61,19 @@ pub const DEFAULT_REG_EXP: &str = r"(\d+) (\w+) (\d+)"; **reg_exp** can be provided but as a **regex** expresion from **string**, if it can not be converted parser exit. +To solve this + +```toml +be_quiet = false +[[targets]] +input = "input.txt" +# \ has to be escaped +reg_exp = "(\\d+) (\\w+) (\\d+)" + +[[targets]] +input = "input_2.txt" +``` + #### CAUTION Command line options have precedence over **config path** settings.
diff --git a/howto.md b/howto.md index 4be78a6..2eee117 100644 --- a/howto.md +++ b/howto.md @@ -63,6 +63,19 @@ pub const DEFAULT_REG_EXP: &str = r"(\d+) (\w+) (\d+)"; **reg_exp** can be provided but as a **regex** expresion from **string**, if it can not be converted parser exit. +To solve this + +```toml +be_quiet = false +[[targets]] +input = "input.txt" +# \ has to be escaped +reg_exp = "(\\d+) (\\w+) (\\d+)" + +[[targets]] +input = "input_2.txt" +``` + > [!CAUTION] > Command line options have precedence over **config path** settings.
> Be careful with the combinations