filter.character.list <-
function (the.base.list, the.sub.list, strip = T)
{
if (strip)
return(the.base.list[is.na(match(the.base.list, the.sub.list))])
else return(the.base.list[!is.na(match(the.base.list, the.sub.list))])
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.