Merge topic 'doc-string-regex'

763a6dc string: Fix regex documentation of '^' and '$' (#14028)
This commit is contained in:
Brad King 2013-03-25 10:07:52 -04:00 committed by CMake Topic Stage
commit 1cc637da20
1 changed files with 2 additions and 2 deletions

View File

@ -129,8 +129,8 @@ public:
"will search for the position of the last occurrence of the "
"specified substring.\n"
"The following characters have special meaning in regular expressions:\n"
" ^ Matches at beginning of a line\n"
" $ Matches at end of a line\n"
" ^ Matches at beginning of input\n"
" $ Matches at end of input\n"
" . Matches any single character\n"
" [ ] Matches any character(s) inside the brackets\n"
" [^ ] Matches any character(s) not inside the brackets\n"