Re: [Virtuoso-users] No bif:match other than bif:contains?

2018-02-13 Thread Jason Koh
Hi Hugh, I will try that. Thanks for the suggestion! With regards, Jason Koh cseweb.ucsd.edu/~jbkoh On Tue, Feb 13, 2018 at 3:17 AM, Hugh Williams wrote: > Hi Jason, > > No such bif:match function exists in Virtuoso ... > > You should be able to use a filter clause in conjunction with bif:con

Re: [Virtuoso-users] No bif:match other than bif:contains?

2018-02-13 Thread Hugh Williams
Hi Jason, No such bif:match function exists in Virtuoso ... You should be able to use a filter clause in conjunction with bif:contains to get a performant exact match with something like: select * where {?s ?p ?o . ?o bif:contains '"Nevis"' FILTER (?o="Nevis"@en)} See the following li