PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name
WHERE { 
  ?person foaf:name ?name 
  FILTER regex(?name, "dodds", "i")
}
