Advertisement
Guest User

SPARQL query that filters based on whether a URI Reference

a guest
May 15th, 2011
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. SELECT * FROM <http://dbpedia.org/resource/Galway> WHERE {
  2.  
  3. ?s ?p ?o .
  4.  
  5. FILTER (
  6. isURI(?s) && regex(str(?s), "^http://dbpedia.org/resource/", "i")
  7. )
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement