14.4 exercise of Detect matches should be 4th level heading (#727)

This commit is contained in:
Zhuoer Dong 2018-11-12 23:55:21 +08:00 committed by Hadley Wickham
parent 8ed781f99a
commit 3ff4336ca5
1 changed files with 1 additions and 1 deletions

View File

@ -612,7 +612,7 @@ str_view_all("abababa", "aba")
Note the use of `str_view_all()`. As you'll shortly learn, many stringr functions come in pairs: one function works with a single match, and the other works with all matches. The second function will have the suffix `_all`. Note the use of `str_view_all()`. As you'll shortly learn, many stringr functions come in pairs: one function works with a single match, and the other works with all matches. The second function will have the suffix `_all`.
### Exercises #### Exercises
1. For each of the following challenges, try solving it by using both a single 1. For each of the following challenges, try solving it by using both a single
regular expression, and a combination of multiple `str_detect()` calls. regular expression, and a combination of multiple `str_detect()` calls.