]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/regex.h
Add test for absence of events from wxSpinCtrlDouble ctor.
[wxWidgets.git] / interface / wx / regex.h
index 147ea7622e34e1cf4949d347988c545e9a8f7e4f..42f79e508b17b3e663c1e86d0a87db3d0f4886eb 100644 (file)
@@ -2,8 +2,7 @@
 // Name:        regex.h
 // Purpose:     interface of wxRegEx
 // Author:      wxWidgets team
 // Name:        regex.h
 // Purpose:     interface of wxRegEx
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
 /////////////////////////////////////////////////////////////////////////////
 
 /**
@@ -94,19 +93,19 @@ enum
     @code
     wxString text;
     ...
     @code
     wxString text;
     ...
-    wxRegEx reEmail = wxT("([^@]+)@([[:alnum:].-_].)+([[:alnum:]]+)");
+    wxRegEx reEmail = "([^@]+)@([[:alnum:].-_].)+([[:alnum:]]+)";
     if ( reEmail.Matches(text) )
     {
         wxString text = reEmail.GetMatch(email);
         wxString username = reEmail.GetMatch(email, 1);
     if ( reEmail.Matches(text) )
     {
         wxString text = reEmail.GetMatch(email);
         wxString username = reEmail.GetMatch(email, 1);
-        if ( reEmail.GetMatch(email, 3) == wxT("com") ) // .com TLD?
+        if ( reEmail.GetMatch(email, 3) == "com" ) // .com TLD?
         {
             ...
         }
     }
 
     // or we could do this to hide the email address
         {
             ...
         }
     }
 
     // or we could do this to hide the email address
-    size_t count = reEmail.ReplaceAll(text, wxT("HIDDEN@\\2\\3"));
+    size_t count = reEmail.ReplaceAll(text, "HIDDEN@\\2\\3");
     printf("text now contains %u hidden addresses", count);
     @endcode
 */
     printf("text now contains %u hidden addresses", count);
     @endcode
 */
@@ -163,7 +162,7 @@ public:
     wxString  GetMatch(const wxString& text, size_t index = 0) const;
 
     /**
     wxString  GetMatch(const wxString& text, size_t index = 0) const;
 
     /**
-        Returns the size of the array of matches, i.e. the number of bracketed
+        Returns the size of the array of matches, i.e.\ the number of bracketed
         subexpressions plus one for the expression itself, or 0 on error.
 
         May only be called after successful call to Compile().
         subexpressions plus one for the expression itself, or 0 on error.
 
         May only be called after successful call to Compile().