From 0fd76b8e90470b99f3e5c968b65562fde56d0c3e Mon Sep 17 00:00:00 2001 From: Joursoir Date: Fri, 3 Mar 2023 00:00:55 +0400 Subject: add option to match only whole words --- src/main.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 3111766..33de082 100644 --- a/src/main.rs +++ b/src/main.rs @@ -18,6 +18,10 @@ struct Config { /// Ignores the case of the search string #[arg(short, long)] ignore_case: bool, + + /// Matches only whole words + #[arg(short, long)] + word_regexp: bool, } fn main() { @@ -48,7 +52,7 @@ fn run(config: Config) -> Result<(), Box> { }; for line in reader.lines().map(|l| l.unwrap()) { - if !trgrep::contains_pattern(&line, &config.pattern, config.ignore_case) { + if !trgrep::contains_pattern(&line, &config.pattern, config.ignore_case, config.word_regexp) { continue; } println!("{line}"); -- cgit v1.2.3-18-g5258