]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/regex.tex
made wxADJUST_MINSIZE default
[wxWidgets.git] / docs / latex / wx / regex.tex
... / ...
CommitLineData
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: regex.tex
3%% Purpose: wxRegEx documentation
4%% Author: Vadim Zeitlin
5%% Modified by:
6%% Created: 14.07.01
7%% RCS-ID: $Id$
8%% Copyright: (c) 2001 Vadim Zeitlin
9%% License: wxWindows license
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12\section{\class{wxRegEx}}\label{wxregex}
13
14wxRegEx represents a regular expression. This class provides support
15for regular expressions matching and also replacement.
16
17It is built on top of either the system library (if it has support
18for POSIX regular expressions - which is the case of the most modern
19Unices) or uses the built in Henry Spencer's library. Henry Spencer
20would appreciate being given credit in the documentation of software
21which uses his library, but that is not a requirement.
22
23Regular expressions, as defined by POSIX, come in two flavours: {\it extended}
24and {\it basic}. The builtin library also adds a third flavour
25of expression \helpref{advanced}{wxresyn}, which is not available
26when using the system library.
27
28Unicode is fully supported only when using the builtin library.
29When using the system library in Unicode mode, the expressions and data
30are translated to the default 8-bit encoding before being passed to
31the library.
32
33On platforms where a system library is available, the default is to use
34the builtin library for Unicode builds, and the system library otherwise.
35It is possible to use the other if preferred by selecting it when building
36the wxWindows.
37
38\wxheading{Derived from}
39
40No base class
41
42\wxheading{Data structures}
43
44Flags for regex compilation to be used with \helpref{Compile()}{wxregexcompile}:
45
46\begin{verbatim}
47enum
48{
49 // use extended regex syntax
50 wxRE_EXTENDED = 0,
51
52 // use advanced RE syntax (built-in regex only)
53#ifdef wxHAS_REGEX_ADVANCED
54 wxRE_ADVANCED = 1,
55#endif
56
57 // use basic RE syntax
58 wxRE_BASIC = 2,
59
60 // ignore case in match
61 wxRE_ICASE = 4,
62
63 // only check match, don't set back references
64 wxRE_NOSUB = 8,
65
66 // if not set, treat '\n' as an ordinary character, otherwise it is
67 // special: it is not matched by '.' and '^' and '$' always match
68 // after/before it regardless of the setting of wxRE_NOT[BE]OL
69 wxRE_NEWLINE = 16,
70
71 // default flags
72 wxRE_DEFAULT = wxRE_EXTENDED
73}
74\end{verbatim}
75
76Flags for regex matching to be used with \helpref{Matches()}{wxregexmatches}.
77
78These flags are mainly useful when doing several matches in a long string
79to prevent erroneous matches for {\tt '\textasciicircum'} and {\tt '\$'}:
80
81\begin{verbatim}
82enum
83{
84 // '^' doesn't match at the start of line
85 wxRE_NOTBOL = 32,
86
87 // '$' doesn't match at the end of line
88 wxRE_NOTEOL = 64
89}
90\end{verbatim}
91
92\wxheading{Examples}
93
94A bad example of processing some text containing email addresses (the example
95is bad because the real email addresses can have more complicated form than
96{\tt user@host.net}):
97
98\begin{verbatim}
99wxString text;
100...
101wxRegEx reEmail = "([^@]+)@([[:alnum:].-_].)+([[:alnum:]]+)";
102if ( reEmail.Matches(text) )
103{
104 wxString text = reEmail.GetMatch(email);
105 wxString username = reEmail.GetMatch(email, 1);
106 if ( reEmail.GetMatch(email, 3) == "com" ) // .com TLD?
107 {
108 ...
109 }
110}
111
112// or we could do this to hide the email address
113size_t count = reEmail.ReplaceAll(text, "HIDDEN@\\2\\3");
114printf("text now contains %u hidden addresses", count);
115\end{verbatim}
116
117\latexignore{\rtfignore{\wxheading{Members}}}
118
119\membersection{wxRegEx::wxRegEx}\label{wxregexwxregex}
120
121\func{}{wxRegEx}{\void}
122
123Default ctor: use \helpref{Compile()}{wxregexcompile} later.
124
125\func{}{wxRegEx}{\param{const wxString\& }{expr}, \param{int }{flags = wxRE\_DEFAULT}}
126
127Create and compile the regular expression, use
128\helpref{IsValid}{wxregexisvalid} to test for compilation errors.
129
130\membersection{wxRegEx::\destruct{wxRegEx}}\label{wxregexdtor}
131
132\func{}{\destruct{wxRegEx}}{\void}
133
134dtor not virtual, don't derive from this class
135
136\membersection{wxRegEx::Compile}\label{wxregexcompile}
137
138\func{bool}{Compile}{\param{const wxString\& }{pattern}, \param{int }{flags = wxRE\_DEFAULT}}
139
140Compile the string into regular expression, return {\tt true} if ok or {\tt false}
141if string has a syntax error.
142
143\membersection{wxRegEx::IsValid}\label{wxregexisvalid}
144
145\constfunc{bool}{IsValid}{\void}
146
147Return {\tt true} if this is a valid compiled regular expression, {\tt false}
148otherwise.
149
150\membersection{wxRegEx::GetMatch}\label{wxregexgetmatch}
151
152\constfunc{bool}{GetMatch}{\param{size\_t* }{start}, \param{size\_t* }{len}, \param{size\_t }{index = 0}}
153
154Get the start index and the length of the match of the expression
155(if {\it index} is $0$) or a bracketed subexpression ({\it index} different
156from $0$).
157
158May only be called after successful call to \helpref{Matches()}{wxregexmatches}
159and only if {\tt wxRE\_NOSUB} was {\bf not} used in
160\helpref{Compile()}{wxregexcompile}.
161
162Returns {\tt false} if no match or if an error occured.
163
164\constfunc{wxString}{GetMatch}{\param{const wxString\& }{text}, \param{size\_t }{index = 0}}
165
166Returns the part of string corresponding to the match where {\it index} is
167interpreted as above. Empty string is returned if match failed
168
169May only be called after successful call to \helpref{Matches()}{wxregexmatches}
170and only if {\tt wxRE\_NOSUB} was {\bf not} used in
171\helpref{Compile()}{wxregexcompile}.
172
173\membersection{wxRegEx::Matches}\label{wxregexmatches}
174
175\constfunc{bool}{Matches}{\param{const wxChar* }{text}, \param{int }{flags = 0}}
176
177Matches the precompiled regular expression against the string {\it text},
178returns {\tt true} if matches and {\tt false} otherwise.
179
180Flags may be combination of {\tt wxRE\_NOTBOL} and {\tt wxRE\_NOTEOL}.
181
182May only be called after successful call to \helpref{Compile()}{wxregexcompile}.
183
184\membersection{wxRegEx::Replace}\label{wxregexreplace}
185
186\constfunc{int}{Replace}{\param{wxString* }{text}, \param{const wxString\& }{replacement}, \param{size\_t }{maxMatches = 0}}
187
188Replaces the current regular expression in the string pointed to by
189{\it text}, with the text in {\it replacement} and return number of matches
190replaced (maybe $0$ if none found) or $-1$ on error.
191
192The replacement text may contain back references {\tt $\backslash$number} which will be
193replaced with the value of the corresponding subexpression in the
194pattern match. {\tt $\backslash$0} corresponds to the entire match and {\tt \&} is a
195synonym for it. Backslash may be used to quote itself or {\tt \&} character.
196
197{\it maxMatches} may be used to limit the number of replacements made, setting
198it to $1$, for example, will only replace first occurrence (if any) of the
199pattern in the text while default value of $0$ means replace all.
200
201\membersection{wxRegEx::ReplaceAll}\label{wxregexreplaceall}
202
203\constfunc{int}{ReplaceAll}{\param{wxString* }{text}, \param{const wxString\& }{replacement}}
204
205Replace all occurrences: this is actually a synonym for
206\helpref{Replace()}{wxregexreplace}.
207
208\wxheading{See also}
209
210\helpref{ReplaceFirst}{wxregexreplacefirst}
211
212\membersection{wxRegEx::ReplaceFirst}\label{wxregexreplacefirst}
213
214\constfunc{int}{ReplaceFirst}{\param{wxString* }{text}, \param{const wxString\& }{replacement}}
215
216Replace the first occurrence.
217
218\wxheading{See also}
219
220\helpref{Replace}{wxregexreplace}
221