summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2017-12-01 06:44:18 +0200
committerJustin Worthe <justin@worthe-it.co.za>2017-12-01 06:44:18 +0200
commitee357f1cb43b42317adb4df4c661a0a197b2a0de (patch)
tree4c6593a3eb167d6ab3cb7ad4eb8139ea6ce17a1e
parent56b731a651e96d1caa7d246b1ae8cd555b23536a (diff)
Added clicks regex
-rw-r--r--src/qif.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qif.rs b/src/qif.rs
index 41f8e6f..9c94506 100644
--- a/src/qif.rs
+++ b/src/qif.rs
@@ -94,6 +94,7 @@ fn replace_common(text: &str) -> String {
(Regex::new(r"(?i)(pick n pay|pnp)").unwrap(), "Pick n Pay"),
(Regex::new(r"(?i)checkers").unwrap(), "Checkers"),
(Regex::new(r"(?i)WOOLWORTHS").unwrap(), "Woolworths"),
+ (Regex::new(r"(?i)clicks").unwrap(), "Clicks"),
(Regex::new(r"(?i)spar").unwrap(), "Spar"),
(Regex::new(r"(?i)Crazy store").unwrap(), "Crazy Store"),
(Regex::new(r"^PNA").unwrap(), "PNA"),