Microsoft 开发人员网络 > 论坛主页 > Regular Expressions
提出问题提出问题
 

Regular Expressions

Discuss and ask questions concerning the usage of Regular Expressions (REGEXes) in the .NET Framework.

公告

  • Regex Meets Linq

    OmegaManMVP2009年2月4日 17:16
    If you love Regex...then Regex and Linq is a match made in Heaven. Here are two scenarios where Regex and linq can be used together.



    Here is a quick example where this input "123abcd3" will tokenized into digits or characters and placed into an IEnumerable array with values of "123", "abcd" and "3".

    The tokenization will occur and the named match Tokens will contain sub captures. Those captures will be enumerated and placed into an IEnumerable <string> array.

    string input = "123abcd3"
    string pattern = @"(?<Tokens>\d+|[a-zA-Z]+)+"
     
    var items = from Match m in Regex.Matches( input, pattern ) 
                from Capture cpt in m.Groups["Tokens"].Captures 
                select cpt.Value; 
     
     
    Console.WriteLine( string.Join( ",", items.ToArray() ) ); 
    // Outputs  
    // 123,abcd,3 





    This should get you started in using Linq with Regex. GL HTH

12345678910 ... 7172>>(显示 1440 的 1 到 20 项)
回复浏览次数