From 836aa109ff792968dd46c64cbc93fcbb9fb0ba84 Mon Sep 17 00:00:00 2001 From: KevinZonda <33132228+KevinZonda@users.noreply.github.com> Date: Sun, 25 Apr 2021 17:24:47 +0100 Subject: [PATCH] add trimer --- Kvm.Analyser/Parser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kvm.Analyser/Parser.cs b/Kvm.Analyser/Parser.cs index 5f0f606..839022e 100644 --- a/Kvm.Analyser/Parser.cs +++ b/Kvm.Analyser/Parser.cs @@ -33,7 +33,7 @@ public static Dictionary ParseKey(string str) continue; } - dic.Add(m[..index], m[(index + 1)..]); + dic.Add(m[..index].Trim(), m[(index + 1)..].Trim()); } return dic;