正則表達式解析字符串信息

正則表達式提取0~9數字

private static string RegexPickupNumber(string str)
        {
            string pattern = @"[^0-9]+";
            return System.Text.RegularExpressions.Regex.Replace(str, pattern, "");
        }

正則表達式提取小數

private static string RegexParseDouble(string str)
        {
            Regex r = new Regex(@"\d*\.\d*|0\.\d*[1-9]\d*$");
            return r.Match(str).Value;
        }
相關文章
相關標籤/搜索