Regular Expressions
Discuss and ask questions concerning the usage of Regular Expressions (REGEXes) in the .NET Framework.
公告
Regex Meets Linq
OmegaManMVPWednesday, 4 February, 2009 17:16If 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.- Place Key Value Pairs into a dictionary<string,string> object from regex: Regex To Linq to Dictionary in C#
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
篩選及排序使用這些選項可縮小討論清單。
- 172094

How to: Verify That Strings Are in Valid E-Mail Format
NastyBastard Thursday, 28 May, 2009 22:39 - 6102

Regex Substraction of Character Set
xalnix Thursday, 13 August, 2009 20:34 - 133187

Does VS have a customized RegEx?
JohnGrove Tuesday, 12 May, 2009 21:58 - 210111

Visual Studio 200X (IDE) - Regular Expressions
OmegaManMVPWednesday, 31 January, 2007 22:59 - 013695

.Net Regex Resources Reference
OmegaManMVPFriday, 19 January, 2007 19:51 - 3205

split string logic
a.Net_Phoenix Tuesday, 24 November, 2009 9:57 - 10197

Regular Expression to restrict exe and batch file
meetjaydeep3 Monday, 23 November, 2009 9:27 - 176

regex to exclude integer in URL greater than
julsbarnes Thursday, 26 November, 2009 12:24 - 2102

Regex that excludes specified entrance
Senglory Wednesday, 25 November, 2009 21:16 - 195

Regex Searches
GameboyHippo Sunday, 22 November, 2009 21:51 - 2137

Regular expression: String start with <div> end with <br /> or </div> which ever comes first
sky789 Friday, 20 November, 2009 17:02 - 7423

Match Values inside Tags as
MAbshir Tuesday, 27 October, 2009 14:23 - 4202

Regular Expression Grouping
Cleyton Jordan Friday, 20 November, 2009 14:48 - 1113

finding strings that start with "(" .. regex match not working
JCNET Thursday, 19 November, 2009 12:26 - 3195

How to make regex for specific needs?
Saad Khan Tuesday, 17 November, 2009 19:20 - 2151

SSRS reporting VB script regex help
JnewBee Tuesday, 17 November, 2009 4:27 - 7397

RegEx maximum length doesnt work for me.
Werner Clausen Wednesday, 28 October, 2009 10:46 - 6242

Removing certain spaces in a text
ofireps Monday, 9 November, 2009 16:42 - 1163

regular expression to accept either 6 or 9 length digits [and ignore leading and trailing spaces]
Kamran Shahid Sunday, 15 November, 2009 20:07 - 1162

How To Exclude an Email Domain using CreateUserWizard?
Tim Hirtle Saturday, 14 November, 2009 21:27

