You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
932 B
36 lines
932 B
13 years ago
|
/*!
|
||
|
\page regexptester-example.html
|
||
|
|
||
|
\ingroup examples
|
||
|
|
||
|
\title A Small Application for Testing Regular Expressions
|
||
|
|
||
|
Regular expressions can sometimes be tricky to get right,
|
||
|
especially those that use the * quantifier. This application lets
|
||
|
you type in a regexp (without doubling the backslashes) and some
|
||
|
test text, and to execute the regexp and see the results. If you
|
||
|
click the Copy button the regexp will be copied to the clipboard
|
||
|
(with the backslashes doubled, ready for you to paste into your
|
||
|
program). Previous regexps and test texts are remembered
|
||
|
throughout the session and can be accessed by dropping down the
|
||
|
comboboxes.
|
||
|
|
||
|
<hr>
|
||
|
|
||
|
Header file:
|
||
|
|
||
|
\include regexptester/regexptester.h
|
||
|
|
||
|
<hr>
|
||
|
|
||
|
Implementation:
|
||
|
|
||
|
\include regexptester/regexptester.cpp
|
||
|
|
||
|
<hr>
|
||
|
|
||
|
Main:
|
||
|
|
||
|
\include regexptester/main.cpp
|
||
|
*/
|