projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
correction to last commit: Korean and Romanian translations will only be in 2.9.1...
[wxWidgets.git]
/
interface
/
wx
/
regex.h
diff --git
a/interface/wx/regex.h
b/interface/wx/regex.h
index 147ea7622e34e1cf4949d347988c545e9a8f7e4f..c414b9f47f729547b8cd4da5eadc615e3cc4e079 100644
(file)
--- a/
interface/wx/regex.h
+++ b/
interface/wx/regex.h
@@
-94,19
+94,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
*/