This is a tool for testing regular expressions in Visual Studio 2019. The tool simple and easy to use, the processing occurs in a background thread.
You can use the Shift+Alt+R shortcut to show tool or open menu View -> Other Windows -> Regex Tester.
This is open source project and source codes are available on GitHub.
NOTE: Previous versions with support VS 2015-2017 are available on GitHub.
Features
Three main modes: Match, Replace, Split.
Autorun feature, there's no necessity always clicks on "Run" button.
Optimize feature, auto use at test large data, shows only first 1000 chars and add warning in the end of output data.
Multi Tabs, you can test other data in new tab.
Output feaure, you can generate C# samples for yours regex.
Output format, you can use '\t' for tab, and '\n' for new line and other chars (see tooltip for field).
The major part of processing occurs in async mode. If process is very busy, 'autorun' will turn off (for better perfomance).
Additional info in controls of input/output text (updated after each run processing).
Change font size for all controls.
Hotkeys
Action
Shortcut
Run
Ctrl+P
Save
Ctrl+S
Autorun
Ctrl+Shift+A (enable/disable)
Close tab
Ctrl+W
Screenshots
Change Log
Version
Changes
2.1.0
Migration to Visual Studio 2019.
2.0.0
Migration to Visual Studio 2017.
1.5.2
Improve regex parsing when regular expression is changing (issue #7).
1.5.1
Autorun triggered on changing the input text.
1.5.0
Added support for Visual Studio 2015 and fixed problem regex replacement & code generation, now instead of the square brackets need to use curly brackets.
1.4.2
Added support for Visual Studio 2013.
1.4.1
Fixed support for Visual Studio 2010.
1.4.0
Added feature "Output mode", you can generate C# samples for yours regex.
1.3.2
Added command "Save", code refactoring and UI changes.
1.3.1
Unification UI styles and fixed some problem.
1.3.0
Added support for Visual Studio 2012.
1.2.0
Refactoring: new optimization mode (auto use at test large data), improvement performance, small update UI and fixed some problem.
1.1.0
Added features: autorun, multitabs, async optimization, hotkeys and etc.