Click here to Skip to main content
15,881,248 members
Articles / Programming Languages / C#

RegexTester

Rate me:
Please Sign up or sign in to vote.
4.56/5 (8 votes)
20 Aug 2009CPOL6 min read 34.5K   308   35  
Presenting a test bed for .NET Regular Expressions

# region Heading

/**************************************************************************************************************/
/*                                                                                                            */
/*  frmRegexTester.Types.cs                                                                                   */
/*                                                                                                            */
/*  Types for frmRegexTester.                                                                                 */
/*                                                                                                            */
/*  This is free code, use it as you require.                                                                 */
/*  If you modify it please use your own namespace.                                                           */
/*                                                                                                            */
/*  If you like it or have suggestions for improvements please let me know at: PIEBALDconsult@aol.com         */
/*                                                                                                            */
/*  Modification history:                                                                                     */
/*  2009-08-09          Sir John E. Boucher     Created                                                       */
/*                                                                                                            */
/**************************************************************************************************************/

# endregion

namespace PIEBALD.RegexTester
{
    partial class frmRegexTester
    {
        private enum Mode
        {
            AsIs
        ,
            Unescape
        ,
            CSharp
        ,
            VisualBasic
        }

        private delegate void EnableDelegate 
        ( 
            System.Windows.Forms.Control Control 
        , 
            bool                         Enable 
        ) ;

        private delegate void AppendResultDelegate
        ( 
            string Result
        ) ;
        
        private sealed class GetResultControlBlock
        {
            public readonly System.Windows.Forms.Control                Control        ;
            public readonly System.Text.RegularExpressions.RegexOptions Options        ;
            public readonly Mode                                        Mode           ;
            public readonly bool                                        ShowWhitespace ;
            public readonly string                                      Regex          ;
            public readonly string                                      Input          ;
            public readonly EnableDelegate                              Enable         ;
            public readonly AppendResultDelegate                        Result         ;
            
            public GetResultControlBlock
            (
                System.Windows.Forms.Control                Control        
            ,
                System.Text.RegularExpressions.RegexOptions Options        
            ,
                Mode                                        Mode           
            ,
                bool                                        ShowWhitespace 
            ,
                string                                      Regex          
            ,
                string                                      Input          
            ,
                EnableDelegate                              Enable
            ,
                AppendResultDelegate                        Result
            )
            {
                this.Control        = Control        ;
                this.Options        = Options        ;
                this.Mode           = Mode           ;
                this.ShowWhitespace = ShowWhitespace ;
                this.Regex          = Regex          ;
                this.Input          = Input          ;
                this.Enable         = Enable         ;
                this.Result         = Result         ;
            
                return ;
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
BSCS 1992 Wentworth Institute of Technology

Originally from the Boston (MA) area. Lived in SoCal for a while. Now in the Phoenix (AZ) area.

OpenVMS enthusiast, ISO 8601 evangelist, photographer, opinionated SOB, acknowledged pedant and contrarian

---------------

"I would be looking for better tekkies, too. Yours are broken." -- Paul Pedant

"Using fewer technologies is better than using more." -- Rico Mariani

"Good code is its own best documentation. As you’re about to add a comment, ask yourself, ‘How can I improve the code so that this comment isn’t needed?’" -- Steve McConnell

"Every time you write a comment, you should grimace and feel the failure of your ability of expression." -- Unknown

"If you need help knowing what to think, let me know and I'll tell you." -- Jeffrey Snover [MSFT]

"Typing is no substitute for thinking." -- R.W. Hamming

"I find it appalling that you can become a programmer with less training than it takes to become a plumber." -- Bjarne Stroustrup

ZagNut’s Law: Arrogance is inversely proportional to ability.

"Well blow me sideways with a plastic marionette. I've just learned something new - and if I could award you a 100 for that post I would. Way to go you keyboard lovegod you." -- Pete O'Hanlon

"linq'ish" sounds like "inept" in German -- Andreas Gieriet

"Things would be different if I ran the zoo." -- Dr. Seuss

"Wrong is evil, and it must be defeated." –- Jeff Ello

"A good designer must rely on experience, on precise, logical thinking, and on pedantic exactness." -- Nigel Shaw

“It’s always easier to do it the hard way.” -- Blackhart

“If Unix wasn’t so bad that you can’t give it away, Bill Gates would never have succeeded in selling Windows.” -- Blackhart

"Use vertical and horizontal whitespace generously. Generally, all binary operators except '.' and '->' should be separated from their operands by blanks."

"Omit needless local variables." -- Strunk... had he taught programming

Comments and Discussions