Hi Yizhen,

> Hi all,
>
> I guess it may be a quick question which can be solved by a quick answer. 
> The problem is that I have a few entity names like
> http://yago-knowledge.org/resource/H._L._"Hub"_Hollis_Field
>
> so if i run sparql queries like
>
> Sparql Select * from <yago> where 
> {<http://yago-knowledge.org/resource/H._L._"Hub"_Hollis_Field> ?a ?b};
>
> It's an instant syntax error. I've tried to escape double quotes using 
> &quot; %22 and single quotes, none of them work.
> Any idea how to correctly escape double quotes? Thanks.


Please try this variant:


SELECT *
FROM <yago>
WHERE
  {
    {`iri('http://yago-knowledge.org/resource/H._L._"Hub"_Hollis_Field')` ?a 
?b}
  }


Best Regards,
Rumi Kocis

>
>
> Yizhen
> ------------------------------------------------------------------------------
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> _______________________________________________
> Virtuoso-users mailing list
> Virtuoso-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/virtuoso-users 


------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
_______________________________________________
Virtuoso-users mailing list
Virtuoso-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/virtuoso-users

Reply via email to