From 8d12695217cea3df0e2a8ce6a100b7e44a34f917 Mon Sep 17 00:00:00 2001 From: Justin Wernick Date: Wed, 31 May 2023 22:08:17 +0200 Subject: Allow many spaces after the "yoco *" --- src/qif.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qif.rs b/src/qif.rs index 36a192c..f93dc66 100644 --- a/src/qif.rs +++ b/src/qif.rs @@ -117,7 +117,7 @@ fn remove_card_number(text: &str) -> String { fn remove_payment_provider(text: &str) -> String { lazy_static! { static ref PURCH_REGEX: Regex = - Regex::new(r"(?i)^(purch( payfast\*)?|pp \*|c\*|yoco \*|ikh\*)").unwrap(); + Regex::new(r"(?i)^(purch( payfast\*)?|pp +\*|c\*|yoco +\*|ikh\*)").unwrap(); } PURCH_REGEX.replace_all(text, "").trim().to_string() } -- cgit v1.2.3