在没有分隔符的情况下拆分字符串的最佳方法

时间:2012-07-30 08:22:37

标签: c# .net

我有字符串:

MONEY-ID123456:MONEY-STAT43:MONEY-PAYetr-1232832938

从上面的字符串中可以看到它以冒号(:)分隔,但在实际环境中,它没有标准布局。

标准是字段名称,例如MONEY-IDMONEY-STAT

我怎样才能以正确的方式分割它?从字段名称后面获取值?

5 个答案:

答案 0 :(得分:3)

正如安德烈所说,我个人会用正则表达式。 使用像

这样的组
"MONEY-ID(?<moneyid>.*)MONEY-STAT(?<moneystat>.*)MONEY-PAYetr(?<moneypay>.*)"

有关如何提取组的信息,请参阅this post。 可能后面是一个私有方法,可以删除匹配组中的非法字符(例如:或 - )。

答案 1 :(得分:3)

这样的事情应该有效:

string s = "MONEY-ID123456:MONEY-STAT43:MONEY-PAYetr-1232832938";
            Regex regex = new Regex(@"MONEY-ID(?<moneyId>.*?)\:MONEY-STAT(?<moneyStat>.*?)\:MONEY-PAYetr-(?<moneyPaetr>.*?)$"); Match match = regex.Match(s);       
            if (match.Success)
            {
                Console.WriteLine("Money ID: " + match.Groups["moneyId"].Value);


                Console.WriteLine("Money Stat: " + match.Groups["moneyStat"].Value);
                Console.WriteLine("Money Paetr: " + match.Groups["moneyPaetr"].Value);

            }

            Console.WriteLine("hit <enter>");
            Console.ReadLine();

<强>更新 回答其他问题,如果我们对格式不确定,可以使用以下内容:

string s = "MONEY-ID123456:MONEY-STAT43:MONEY-PAYetr-1232832938";
        var itemsToExtract = new List<string> { "MONEY-STAT", "MONEY-PAYetr-", "MONEY-ID", };

        string regexFormat = @"{0}(?<{1}>[\d]*?)[^\w]";//sample - MONEY-ID(?<moneyId>.*?)\:
        foreach (var item in itemsToExtract)
        {
            string input = s + ":";// quick barbarian fix of lack of my knowledge of regex. Sorry
            var match = Regex.Match(input, string.Format(regexFormat, item, "match"));
            if (match.Success)
            {
                Console.WriteLine("Value of {0} is:{1}", item, match.Groups["match"]);
            }
        }

        Console.WriteLine("hit <enter>");
        Console.ReadLine();

答案 2 :(得分:1)

检查出来:

string regex = @"^(?i:money-id)(?<moneyid>.*)(?i:money-stat)(?<moneystat>.*)(?i:money-pay)(?<moneypay>.*)$";
string input = "MONEY-ID123456:MONEY-STAT43:MONEY-PAYetr-1232832938";
Match regexMatch = Regex.Match(input, regex);

string moneyID = regexMatch.Groups["moneyid"].Captures[0].Value.Trim();
string moneyStat = regexMatch.Groups["moneystat"].Captures[0].Value.Trim();
string moneyPay = regexMatch.Groups["moneypay"].Captures[0].Value.Trim();

答案 3 :(得分:0)

例如,使用regular expressions

(?<=MONEY-ID)(\d)*

它将提取

123456

来自你的字符串。

答案 4 :(得分:0)

尝试

                    string data = "MONEY-ID123456:MONEY-STAT43:MONEY-PAYetr-1232832938";
                    data = data.Replace("MONEY-", ";");

                    string[] myArray = data.Split(';');
                    foreach (string s in myArray)
                    {
                        if (!string.IsNullOrEmpty(s))
                        {
                            if (s.StartsWith("ID"))
                            { 

                            }
                            else if (s.StartsWith("STAT"))
                            {

                            }
                            else if (s.StartsWith("PAYetr"))
                            { 

                            }
                        }
                    }

结果

ID123456:
STAT43:
PAYetr-1232832938