stringr 1.5.0 now on CRAN (#1169)
This commit is contained in:
		@@ -30,7 +30,7 @@ Imports:
 | 
				
			|||||||
    readxl,
 | 
					    readxl,
 | 
				
			||||||
    repurrrsive,
 | 
					    repurrrsive,
 | 
				
			||||||
    slider,
 | 
					    slider,
 | 
				
			||||||
    stringr,
 | 
					    stringr (>= 1.5.0),
 | 
				
			||||||
    tidymodels,
 | 
					    tidymodels,
 | 
				
			||||||
    tidyverse,
 | 
					    tidyverse,
 | 
				
			||||||
    tidyr,
 | 
					    tidyr,
 | 
				
			||||||
@@ -46,7 +46,6 @@ Suggests:
 | 
				
			|||||||
Remotes:
 | 
					Remotes:
 | 
				
			||||||
    tidyverse/dplyr,
 | 
					    tidyverse/dplyr,
 | 
				
			||||||
    tidyverse/dbplyr,
 | 
					    tidyverse/dbplyr,
 | 
				
			||||||
    tidyverse/stringr,
 | 
					 | 
				
			||||||
    tidyverse/tidyr,
 | 
					    tidyverse/tidyr,
 | 
				
			||||||
    tidyverse/purrr,
 | 
					    tidyverse/purrr,
 | 
				
			||||||
    jennybc/repurrrsive
 | 
					    jennybc/repurrrsive
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -23,8 +23,8 @@ We'll finish up with a survey of other places in the tidyverse and base R where
 | 
				
			|||||||
### Prerequisites
 | 
					### Prerequisites
 | 
				
			||||||
 | 
					
 | 
				
			||||||
::: callout-important
 | 
					::: callout-important
 | 
				
			||||||
This chapter relies on features only found in stringr 1.5.0 and tidyr 1.3.0 which are still in development.
 | 
					This chapter relies on features only found in tidyr 1.3.0 which are still in development.
 | 
				
			||||||
If you want to live life on the edge, you can get the dev versions with `devtools::install_github(c("tidyverse/stringr", "tidyverse/tidyr"))`.
 | 
					If you want to live life on the edge, you can get the dev versions with `devtools::install_github("tidyverse/tidyr")`.
 | 
				
			||||||
:::
 | 
					:::
 | 
				
			||||||
 | 
					
 | 
				
			||||||
In this chapter, we'll use regular expression functions from stringr and tidyr, both core members of the tidyverse, as well as data from the babynames package.
 | 
					In this chapter, we'll use regular expression functions from stringr and tidyr, both core members of the tidyverse, as well as data from the babynames package.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,15 +14,16 @@ Now it's time to dive into them, learning what makes strings tick, and mastering
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
We'll begin with the details of creating strings and character vectors.
 | 
					We'll begin with the details of creating strings and character vectors.
 | 
				
			||||||
You'll then dive into creating strings from data, then the opposite; extracting strings from data.
 | 
					You'll then dive into creating strings from data, then the opposite; extracting strings from data.
 | 
				
			||||||
We'll then discuss tools that work with individual letters. The chapter finishes off with functions that work with individual letters and a brief discussion of where your expectations from English might steer you wrong when working with other languages.
 | 
					We'll then discuss tools that work with individual letters.
 | 
				
			||||||
 | 
					The chapter finishes off with functions that work with individual letters and a brief discussion of where your expectations from English might steer you wrong when working with other languages.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
We'll keep working with strings in the next chapter, where you'll learn more about the power of regular expressions.
 | 
					We'll keep working with strings in the next chapter, where you'll learn more about the power of regular expressions.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Prerequisites
 | 
					### Prerequisites
 | 
				
			||||||
 | 
					
 | 
				
			||||||
::: callout-important
 | 
					::: callout-important
 | 
				
			||||||
This chapter relies on features only found in stringr 1.5.0 and tidyr 1.3.0 which are still in development.
 | 
					This chapter relies on features only found in tidyr 1.3.0 which are still in development.
 | 
				
			||||||
If you want to live life on the edge you can get the dev versions with `devtools::install_github(c("tidyverse/stringr", "tidyverse/tidyr"))`.
 | 
					If you want to live life on the edge, you can get the dev versions with `devtools::install_github("tidyverse/tidyr")`.
 | 
				
			||||||
:::
 | 
					:::
 | 
				
			||||||
 | 
					
 | 
				
			||||||
In this chapter, we'll use functions from the stringr package which is part of the core tidyverse.
 | 
					In this chapter, we'll use functions from the stringr package which is part of the core tidyverse.
 | 
				
			||||||
@@ -661,4 +662,3 @@ This also comes up when sorting strings with `dplyr::arrange()` which is why it
 | 
				
			|||||||
In this chapter you've learned about some of the power of the stringr package: you learned how to create, combine, and extract strings, and about some of the challenges you might face with non-English strings.
 | 
					In this chapter you've learned about some of the power of the stringr package: you learned how to create, combine, and extract strings, and about some of the challenges you might face with non-English strings.
 | 
				
			||||||
Now it's time to learn one of the most important and powerful tools for working withr strings: regular expressions.
 | 
					Now it's time to learn one of the most important and powerful tools for working withr strings: regular expressions.
 | 
				
			||||||
Regular expressions are very concise, but very expressive, language for describing patterns within strings, and are the topic of the next chapter.
 | 
					Regular expressions are very concise, but very expressive, language for describing patterns within strings, and are the topic of the next chapter.
 | 
				
			||||||
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user