gpt4 book ai didi

c# - 如何验证文本框是否输入了有效的货币值?

转载 作者:太空宇宙 更新时间:2023-11-03 16:51:44 24 4
gpt4 key购买 nike

我正在制作一个用于计算 Windows Phone 7 提示的小应用程序,我想在尝试计算之前验证输入。

如何检查文本框是否插入了有效的货币值?没有字母,小数点不超过一个点。

最佳答案

您描述的标准可以用 RegEx 检查,但只检查 decimal.TryParse()

会更有意义
string txt = MyTextBox.Text;
decimal value;

if (decimal.TryParse(txt,
NumberStyles.AllowDecimalPoint,
CultureInfo.InvariantCulture, out value))
{
// got it
}

NumberStyles 和 CultureInfo (IFormatprovider) 有待讨论。

关于c# - 如何验证文本框是否输入了有效的货币值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3747416/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com