(This article was first published on R-Chart, and kindly contributed to R-bloggers)
Here's a ditty to search the cran R packages by descriptioncranSearch = function(q='')
{
library(XML)
u<-'http://cran.r-project.org/web/packages/'
d<-readHTMLTable(u)
d[[1]]$V1
lib.names <- as.vector(d[[1]]$V1)
lib.descriptions <- as.vector(d[[1]]$V2)
lib.names[grep(q,lib.descriptions)]
}
So to search for all packages that have XML in the description.
cranSearch('XML')
The search is case sensitive.
cranSearch('World Bank')
In fact it is a regular expression.
cranSearch('stock|Stock')
To leave a comment for the author, please follow the link and comment on his blog: R-Chart.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).