View source: R/str_get_after_last_separator.R
str_get_after_last_separator | R Documentation |
Return everything between after last occurence of separator and end of the string.
str_get_after_last_separator( string = "a.b?c.net", separator = ".", include_sep_in_output = FALSE )
string |
A character string. |
separator |
Default ".". |
include_sep_in_output |
Optional. Include the separator in the output. Default FALSE. |
str <- "I am smart enough, good looking enough, and gosh darn it; people like me." str_get_after_last_separator(str, separator = ",") [1] " and gosh darn it; people like me." str_get_after_last_separator(str, separator = ",", include_sep_in_output = T) [1] ", and gosh darn it; people like me."
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.