From 9db6a36a04c93d509a7833a5e378b95b2f5e8361 Mon Sep 17 00:00:00 2001 From: "NBTEMP\\bib" Date: Wed, 9 Sep 2026 11:19:24 +0200 Subject: [PATCH] fehlerbehebung --- Casino/Blackjack.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Casino/Blackjack.xaml.cs b/Casino/Blackjack.xaml.cs index 7902287..bcf0e12 100644 --- a/Casino/Blackjack.xaml.cs +++ b/Casino/Blackjack.xaml.cs @@ -62,7 +62,7 @@ namespace Casino Close(); } - private static readonly Regex _regex = new Regex("[^0-9]+€"); // Regex to match non-numeric input + private static readonly Regex _regex = new Regex("[^0-9]"); // Regex to match non-numeric input //nur nummern private void TextBox_OnPreviewTextInput(object sender, TextCompositionEventArgs e)