X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/11e3af6e7eed3c4717608ba2095a688b1fea60e0..36a0190ebd5bd9a7302f60f6dcd608b80574e21c:/interface/wx/regex.h?ds=sidebyside diff --git a/interface/wx/regex.h b/interface/wx/regex.h index 147ea7622e..42f79e508b 100644 --- a/interface/wx/regex.h +++ b/interface/wx/regex.h @@ -2,8 +2,7 @@ // 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; ... - 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.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 - 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 */ @@ -163,7 +162,7 @@ public: 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().