query-8dd73c17f090b80284581cf52e6fa171

rq turtle/ttl

Search an author with the acronym in the first name with ORCID iD on WikidataHello! I'm looking for a RegEx pattern that can help me find corresponding author names in the acronym case. Currently, I have my code that can find authors with orcid in their full names on Wikidata. The code example is below:

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?orcid 
WHERE {
 ?item rdfs:label|foaf:name|skos:altLabel "D. Elia"@en .
 VALUES ?orcid { "0000-0002-9120-5890" }
 SERVICE wikibase:label { bd:serviceParam wikibase:language "en" .}
}

Query found at