From: Yossi C. <yos...@li...> - 2014-02-03 18:57:14
|
Hi everyone, I have a SKOS rdf file loaded into a Graph.I want to look for triples in the form: <concept-uri> <skos:prefLabel> ?labelwhere the labels are in the form "label@lang" e.g., "Microsoft@en" I'm tried to use:var triples = Graph.GetTriplesWithPredicateObject( <skos:prefLabel> , "Microsoft" ); with no luck (there exist of course an object with the value = "Microsoft@en").Now i need to select those which have the object node value="Microsoft" regardless of the object lang tag. Is there a way to do this? Thanks,Yossi |