正常表达式匹配
String strPricePatten = @"[0-9]+\.?[0-9]*"; // 要进行匹配的正则表达式
Regex rgxMatchPrice = new Regex(strPricePatten);
String strMatchValue = rgxMatchPrice.Match(id).ToString(); // 匹配的结果
Regex rgxMatchPrice = new Regex(strPricePatten);
String strMatchValue = rgxMatchPrice.Match(id).ToString(); // 匹配的结果