Within the dplyr world, try:
select(iris,contains("Sepal"))
See the Selection section in ?select for numerous other helpers like starts_with, ends_with, etc.
Within the dplyr world, try:
select(iris,contains("Sepal"))
See the Selection section in ?select for numerous other helpers like starts_with, ends_with, etc.