我想从页面中删除所有货币符号和金额。
我的字符串示例:
“这是$ 10,000金额不足20美元。但赚200.45美元可以获利。”
输出:
“这还不够。但要赚钱。”
如何通过c#代码删除。
如果有人可以给我RegEx。
答案 0 :(得分:1)
因为您是以Regex
形式提出的:
var s = "This is $10,000 amount is not enough $20. But Make $200.45 profit them.";
var replaced = Regex.Replace(s, @"\$\d*,?\d*\.?\d+", string.Empty);