日期:2014-05-17 浏览次数:20779 次
static void Main(string[] args)
{
getPriceByRegularExpression("¥11"); --取出11
getPriceByRegularExpression("¥11.11"); --取出11.11
getPriceByRegularExpression("11.11"); --取出11.11
getPriceByRegularExpression("我11.11"); --取出11.11
getPriceByRegularExpression(" 11.11"); --取出11.11
getPriceByRegularExpression(".11.11."); --取出11.11
getPriceByRegularExpression("我0你"); --取出0
getPriceByRegularExpression("0.0"); --取出0
}
//正则取出价格
public static string getPriceByRegularExpression(string priceInfo)
{
string pattern = ??????;
string price = Regex.Match(priceInfo, pattern, RegexOptions.Singleline).ToString();
return price;
}