I'm trying to query dpbedia to get the categories of some wikipedia articles using Jena and ARQ
For example:
select ?category { dbpedia:ARTICLE_NAME dcterms:subject ?category }
Here is an example of a working query
SPARQL results
The problem is when there are special characters in ARTICLE_NAME for example "Parma_F.C.", where there is "."
select ?category { dbpedia:Parma_F.C. dcterms:subject ?category }
So, I would like to ask you if someone had a solution for that.
Thanks in advance