chore: reg_exp example included

This commit is contained in:
Jesús Pérez 2024-10-21 20:39:45 +01:00
parent 8a23c9d4cc
commit c29aed3316
No known key found for this signature in database
2 changed files with 26 additions and 0 deletions

View File

@ -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. <br>

View File

@ -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. <br>
> Be careful with the combinations