We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5161bbe commit 5ff8a5bCopy full SHA for 5ff8a5b
Plugins/Flow.Launcher.Plugin.Calculator/Main.cs
@@ -24,7 +24,7 @@ public class Main : IPlugin, IPluginI18n, ISettingProvider
24
@"[ei]|[0-9]|0x[\da-fA-F]+|[\+\%\-\*\/\^\., ""]|[\(\)\|\!\[\]]" +
25
@")+$", RegexOptions.Compiled);
26
private static readonly Regex RegBrackets = new Regex(@"[\(\)\[\]]", RegexOptions.Compiled);
27
- private static readonly Regex ThousandGroupRegex = new Regex(@"\B(?=(\d{3})+(?!\d))");
+ private static readonly Regex ThousandGroupRegex = new Regex(@"\B(?=(\d{3})+(?!\d))", RegexOptions.Compiled);
28
private static readonly Regex NumberRegex = new Regex(@"[\d\.,]+", RegexOptions.Compiled);
29
30
private static Engine MagesEngine;
0 commit comments