Listing 15. You can use regular expressions as filters.
PREFIX dc:   
PREFIX xsd:  
PREFIX rss:  
PREFIX content: 
DESCRIBE ?channel ?bnode ?a WHERE
{
 ?channel ?items ?bnode .
 ?bnode ?hasitem ?a .
 ?a content:encoded ?content .
 FILTER ( regex(?content, ".*product.*", "i") )
}