summaryrefslogtreecommitdiffstats
path: root/examples/regexptester/regexptester.doc
blob: 81f7cb43513d482aa9eb7cf9aaabd5f3e41095ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*!
    \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
*/