File: examples.html

package info (click to toggle)
boost 1.34.1-14
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 116,412 kB
  • ctags: 259,566
  • sloc: cpp: 642,395; xml: 56,450; python: 17,612; ansic: 14,520; sh: 2,265; yacc: 858; perl: 481; makefile: 478; lex: 94; sql: 74; csh: 6
file content (117 lines) | stat: -rw-r--r-- 7,299 bytes parent folder | download
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
   <head>
      <title>Boost.Regex: Examples</title>
      <meta name="generator" content="HTML Tidy, see www.w3.org">
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
      <link rel="stylesheet" type="text/css" href="../../../boost.css">
   </head>
   <body>
      <p></p>
      <table id="Table1" cellspacing="1" cellpadding="1" width="100%" border="0">
         <tr>
            <td valign="top" width="300">
               <h3><a href="../../../index.htm"><IMG height="86" alt="C++ Boost" src="../../../boost.png" width="277" border="0"></a></h3>
            </td>
            <td width="353">
               <h1 align="center">Boost.Regex</h1>
               <h2 align="center">Examples</h2>
            </td>
            <td width="50">
               <h3><a href="index.html"><IMG height="45" alt="Boost.Regex Index" src="uarrow.gif" width="43" border="0"></a></h3>
            </td>
         </tr>
      </table>
      <BR>
      <BR>
      <HR>
      <H3>Test Programs</H3>
      <H4>regress:</H4>
      <P>A regression test application that gives the matching/searching algorithms a 
         full workout. The presence of this program is your guarantee that the library 
         will behave as claimed - at least as far as those items tested are concerned - 
         if anyone spots anything that isn't being tested I'd be glad to hear about it.</P>
      <P>Directory: <A href="../test/regress">libs/regex/test/regress</A>.</P>
      <P>Files: <A href="../test/regress/basic_tests.cpp">basic_tests.cpp</A> <A href="../test/regress/test_deprecated.cpp">
            test_deprecated.cpp</A> <A href="../test/regress/main.cpp">main.cpp</A>.</P>
      <H4>bad_expression_test:</H4>
      <P>Verifies that "bad" regular expressions don't cause the matcher to go into 
         infinite loops, but to throw an exception instead.</P>
      <P>Directory: <A href="../test/pathology">libs/regex/test/pathology</A>.</P>
      <P>Files: <A href="../test/pathology/bad_expression_test.cpp">bad_expression_test.cpp</A>.</P>
      <H4>recursion_test:</H4>
      <P>Verifies that the matcher can't overrun the stack (no matter what the 
         expression).</P>
      <P>Directory: <A href="../test/pathology">libs/regex/test/pathology</A>.</P>
      <P>Files: <A href="../test/pathology/recursion_test.cpp">recursion_test.cpp</A>.</P>
      <H4>concepts:</H4>
      <P>Verifies that the library meets all documented concepts (a compile only test).</P>
      <P>Directory: <A href="../test/concepts">libs/regex/test/concepts</A>.</P>
      <P>Files: <A href="../test/concepts/concept_check.cpp">concept_check.cpp</A>.</P>
      <H4>captures_test:</H4>
      <P>Test code for captures.</P>
      <P>Directory: <A href="../test/captures">libs/test/captures</A>.</P>
      <P>Files: <A href="../test/captures/captures_test.cpp">captures_test.cpp</A>.</P>
      <H3>Example programs</H3>
      <H4>grep</H4>
      <P>A simple grep implementation, run with the -h command line option to find out 
         its usage.</P>
      <P>Files: <A href="../example/grep/grep.cpp">grep.cpp</A></P>
      <H4>timer.exe</H4>
      <P>A simple interactive expression matching application, the results of all 
         matches are timed, allowing the programmer to optimize their regular 
         expressions where performance is critical.</P>
      <P>Files: <A href="../example/timer/regex_timer.cpp">regex_timer.cpp</A>.</P>
      <H4>Code snippets</H4>
      <P>The snippets examples contain the code examples used in the documentation:</P>
      <P><A href="../example/snippets/captures_example.cpp">captures_example.cpp</A>: 
         Demonstrates the use of captures.</P>
      <P><A href="../example/snippets/credit_card_example.cpp">credit_card_example.cpp</A>: 
         Credit card number formatting code.</P>
      <P><A href="../example/snippets/partial_regex_grep.cpp">partial_regex_grep.cpp</A>: 
         Search example using partial matches.</P>
      <P><A href="../example/snippets/partial_regex_match.cpp">partial_regex_match.cpp</A>: 
         regex_match example using partial matches.</P>
      <P><A href="../example/snippets/regex_iterator_example.cpp">regex_iterator_example.cpp</A>: 
         Iterating through a series of matches.</P>
      <P><A href="../example/snippets/regex_match_example.cpp">regex_match_example.cpp</A>: 
         ftp based regex_match example.</P>
      <P><A href="../example/snippets/regex_merge_example.cpp">regex_merge_example.cpp</A>: 
         regex_merge example: converts a C++ file to syntax highlighted HTML.</P>
      <P><A href="../example/snippets/regex_replace_example.cpp">regex_replace_example.cpp</A>: 
         regex_replace example: converts a C++ file to syntax highlighted HTML</P>
      <P><A href="../example/snippets/regex_search_example.cpp">regex_search_example.cpp</A>: 
         regex_search example: searches a cpp file for class definitions.</P>
      <P><A href="../example/snippets/regex_token_iterator_eg_1.cpp">regex_token_iterator_eg_1.cpp</A>: 
         split a string into a series of tokens.</P>
      <P><A href="../example/snippets/regex_token_iterator_eg_2.cpp">regex_token_iterator_eg_2.cpp</A>: 
         enumerate the linked URL's in a HTML file.</P>
      <P>The following are deprecated:</P>
      <P><A href="../example/snippets/regex_grep_example_1.cpp">regex_grep_example_1.cpp</A>: 
         regex_grep example 1: searches a cpp file for class definitions.</P>
      <P><A href="../example/snippets/regex_grep_example_2.cpp">regex_grep_example_2.cpp</A>: 
         regex_grep example 2: searches a cpp file for class definitions, using a global 
         callback function.</P>
      <P><A href="../example/snippets/regex_grep_example_3.cpp">regex_grep_example_3.cpp</A>: 
         regex_grep example 2: searches a cpp file for class definitions, using a bound 
         member function callback.</P>
      <P><A href="../example/snippets/regex_grep_example_4.cpp">regex_grep_example_4.cpp</A>: 
         regex_grep example 2: searches a cpp file for class definitions, using a C++ 
         Builder closure as a callback.</P>
      <P><A href="../example/snippets/regex_split_example_1.cpp">regex_split_example_1.cpp</A>: 
         regex_split example: split a string into tokens.</P>
      <P><A href="../example/snippets/regex_split_example_2.cpp">regex_split_example_2.cpp</A>
         : regex_split example: spit out linked URL's.</P>
      <P></P>
      <HR>
      <p>Revised&nbsp; 
         <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan --> 
         28 June 2004&nbsp; 
         <!--webbot bot="Timestamp" endspan i-checksum="39359" --></p>
      <p><i> Copyright John Maddock&nbsp;1998- 
            <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%Y" startspan -->  2004<!--webbot bot="Timestamp" endspan i-checksum="39359" --></i></p>
      <P><I>Use, modification and distribution are subject to the Boost Software License, 
            Version 1.0. (See accompanying file <A href="../../../LICENSE_1_0.txt">LICENSE_1_0.txt</A>
            or copy at <A href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</A>)</I></P>
   </body>
</html>