From ff24e8f7e8cd92a854a11659c88eba9ee2e763fe Mon Sep 17 00:00:00 2001
From: John Maddock
-
+
Test
Programs
@@ -97,7 +97,7 @@
Files: captures_test.cpp.
@@ -35,7 +35,7 @@ report on C++ Library Extensions.
diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html
index c12edc59..337856b0 100644
--- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html
+++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html
@@ -80,7 +80,7 @@
boost::smatch what;
if(boost::u32regex_match(path, what, r))
{
- // extract $1 as a CString:
+ // extract $1 as a std::string:
return what.str(1);
}
else
@@ -120,7 +120,7 @@
boost::u16match what;
if(boost::u32regex_search(text, what, r))
{
- // extract $0 as a CString:
+ // extract $0 as a UnicodeString:
return UnicodeString(what[0].first, what.length(0));
}
else
@@ -130,7 +130,7 @@
}
diff --git a/doc/html/index.html b/doc/html/index.html
index a5743be7..06b2cd6f 100644
--- a/doc/html/index.html
+++ b/doc/html/index.html
@@ -202,7 +202,7 @@
Last revised: August 13, 2007 at 17:46:28 GMT Last revised: August 25, 2007 at 08:47:36 GMT
-
+
u32regex_replace
-
+
diff --git a/doc/icu_strings.qbk b/doc/icu_strings.qbk
index 59b8c1ea..4a4e13ec 100644
--- a/doc/icu_strings.qbk
+++ b/doc/icu_strings.qbk
@@ -138,7 +138,7 @@ Example: match a UTF-8 encoded filename:
boost::smatch what;
if(boost::u32regex_match(path, what, r))
{
- // extract $1 as a CString:
+ // extract $1 as a std::string:
return what.str(1);
}
else
@@ -172,7 +172,7 @@ Example: search for a character sequence in a specific language block:
boost::u16match what;
if(boost::u32regex_search(text, what, r))
{
- // extract $0 as a CString:
+ // extract $0 as a UnicodeString:
return UnicodeString(what[0].first, what.length(0));
}
else
diff --git a/example/snippets/icu_example.cpp b/example/snippets/icu_example.cpp
index 879b0bfd..8e5f22ca 100644
--- a/example/snippets/icu_example.cpp
+++ b/example/snippets/icu_example.cpp
@@ -43,7 +43,7 @@ std::string get_filename(const std::string& path)
boost::smatch what;
if(boost::u32regex_match(path, what, r))
{
- // extract $1 as a CString:
+ // extract $1 as a std::string:
return what.str(1);
}
else
@@ -61,7 +61,7 @@ UnicodeString extract_greek(const UnicodeString& text)
boost::u16match what;
if(boost::u32regex_search(text, what, r))
{
- // extract $0 as a CString:
+ // extract $0 as a UnicodeString:
return UnicodeString(what[0].first, what.length(0));
}
else