powered by
Takes a string and returns an array of delimited strings (by default, each character)
umx_explode(delimiter = character(), string)
what to break the string on. Default is empty string ""
an character string, e.g. "dog"
- a vector of strings, e.g. c("d", "o", "g")
- http://tbates.github.io, https://github.com/tbates/umx, http://php.net/manual/en/function.explode.php
Other String Functions: umx_explode_twin_names, umx_grep, umx_rot, umx_trim
umx_explode_twin_names
umx_grep
umx_rot
umx_trim
# NOT RUN { umx_explode("", "dog") # "d" "o" "g" umx_explode(" ", "cats and dogs") # [1] "cats" "and" "dogs" # }
Run the code above in your browser using DataLab