Click here to Skip to main content
15,881,516 members
Articles / Programming Languages / XML

Regex Tester

Rate me:
Please Sign up or sign in to vote.
3.47/5 (22 votes)
1 Jun 20031 min read 102.6K   705   23   5
A simple Regex Tester. The code also illustrates the simple usage of regular expressions in .NET.

Sample Image - regexTester.gif

Introduction

The Regex Tester is an application to use for testing regular expression patterns on a test string, as we create the pattern, rather than testing it on the actual input, which may sometimes be time consuming, especially for large input strings.

Using the RegexTester

The usage is more straight forward. The input string is typed in the test string box, and the pattern is typed in the pattern textbox, as shown above.

Regular Expressions in .NET

Using regular expressions in .NET is pretty simple... using the regularexpressions namespace available:

VB.NET
Imports System.Text.RegularExpressions
' import the namespace

'instantiate the objects
dim oRegex as new regex("test pattern")

'use the object
If oRegex.IsMatch("this is the string to test on") Then
    msgbox "Match found"
else
    msgbox "Didnt find match"
end if

Points of Interest

The RegexTester with this article has a little nice feature for you to experiment. If the test string box is left empty, the application searches for a file teststring.txt (can be anything if the code attached is aptly modified), and if the file is found, uses the contents of the file as a test string. This feature comes in needy, when the input string / test string is large.

If you are already conversant with simple .NET programming and the process of creating regular expression patterns, the Regex Tester might be all you need. ;)

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.



Comments and Discussions

 
NewsThere's a new version of the RegEx Tester Tool ! Pin
Pablo Osés1-Mar-08 23:25
Pablo Osés1-Mar-08 23:25 
GeneralRegular Expressions with a range of numbers Pin
kongo1018-Nov-05 19:36
kongo1018-Nov-05 19:36 
GeneralRe: Regular Expressions with a range of numbers Pin
User 3073519-Nov-05 7:24
professionalUser 3073519-Nov-05 7:24 
GeneralHandy Pin
Voldo20-Apr-04 19:55
Voldo20-Apr-04 19:55 
GeneralExpresso Pin
Jonathan de Halleux2-Jun-03 20:30
Jonathan de Halleux2-Jun-03 20:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.