Нужен совет разбора десятичного значения из строки - PullRequest
1 голос
/ 17 января 2011

Мне нужно проанализировать количество в десятичном виде и код валюты в виде строки.

Входная строка

302 600.00 RUB
10 000.00 USD

Узор

  1. QUANTITY-> космос> CurrencyCode
  2. ДВЕ ЦИФРЫ
  3. Пробел как разделитель тысяч, точка как десятичный разделитель

Ответы [ 3 ]

1 голос
/ 17 января 2011
using System.Text.RegularExpressions;

[...]

string sInput = "302 10 600.00 RUB";
// string sInput = "302 600.00 RUB";
// string sInput = "10 000.00 USD";

var rgmResult = Regex.Match(sInput, @"^(?<qty>\d+) (?<price>\d{1,3}( \d{3})*\.\d{2}) (?<cur>[A-Z]{3})$");
string sQuantity = rgmResult.Groups["qty"].Value;
string sPrice = rgmResult.Groups["price"].Value;
string sCurrency = rgmResult.Groups["cur"].Value;
1 голос
/ 17 января 2011

Вы можете использовать Regex с аккумуляторами, пользовательские NumberFormat

string pattern = @"(?<decimal>[0-9]{0,3}(\s[0-9]{3})*(.[0-9]+){0,1})\s" +
                 @"(?<currency>[a-zA-Z]+){1}";

string input = "302 600.00 RUB\r\n10 000.00 USD"; 

// Get text that matches regular expression pattern.
MatchCollection matches = Regex.Matches(input, pattern, RegexOptions.IgnoreCase);

NumberFormatInfo format = new NumberFormatInfo();
format.NumberGroupSeparator = " ";
format.NumberDecimalSeparator = ".";
format.NumberDecimalDigits = 2;

Dictionary<string, decimal> dictionary = new Dictionary<string, decimal>();
foreach (Match match in matches)
{
    dictionary.Add(match.Groups["currency"].Value, Decimal.Parse(match.Groups["decimal"].Value, format));      
}
if (dictionary.Count > 0)
{
    foreach (KeyValuePair<string, decimal> item in dictionary)
    {
        Console.WriteLine("Currency : {0} Amount: {1}", item.Key, item.Value);
    }
}

Вывод:

Currency : RUB Amount: 302600,00
Currency : USD Amount: 10000,00
1 голос
/ 17 января 2011

Это не проверено, но вы можете сделать что-то вроде этого.

string text = "302 600.00 RUB";
decimal amount;
string type;

var lastspace = text.lastIndexOf(" ");    
decimal.TryParse(text.substring(0, lastspace - 1), out amount);
type = text.substring(lastspace + 1);

Надеюсь, это поможет.

...