gpt4 book ai didi

c# - 从字符串中删除任何货币符号的正则表达式?

转载 作者:太空狗 更新时间:2023-10-29 22:34:42 25 4
gpt4 key购买 nike

我正在尝试从字符串值中删除任何货币符号。

using System;
using System.Windows.Forms;
using System.Text.RegularExpressions;

namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
string pattern = @"(\p{Sc})?";
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
decimal x = 60.00M;
txtPrice.Text = x.ToString("c");
}

private void btnPrice_Click(object sender, EventArgs e)
{
Regex rgx = new Regex(pattern);
string x = rgx.Replace(txtPrice.Text, "");
txtPrice.Text = x;
}
}
}
// The example displays the following output:
// txtPrice.Text = "60.00";

这有效,但它不会删除阿拉伯语中的货币符号。我不知道为什么。

以下是带有货币符号的示例阿拉伯字符串。

txtPrice.Text = "ج.م.‏ 60.00";

最佳答案

不匹配符号 - 创建匹配数字的表达式。

尝试这样的事情:

 ([\d,.]+)

要解释的货币符号太多了。最好只捕获您想要的数据。前面的表达式将仅捕获数字数据和任何位置分隔符。

使用这样的表达式:

var regex = new Regex(@"([\d,.]+)");

var match = regex.Match(txtPrice.Text);

if (match.Success)
{
txtPrice.Text = match.Groups[1].Value;
}

关于c# - 从字符串中删除任何货币符号的正则表达式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4120604/

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