Is there a way to select a subset of columns using text matching or regular expressions?
In R it would be like this:
attach(iris) #Load the 'Stairway to Heaven' of R's built-in data sets
iris[grep(names(iris),pattern="Length")] #Prints only columns containing the word "Length"