Skip to content

Instantly share code, notes, and snippets.

@ross-spencer
Created December 30, 2024 09:07
Show Gist options
  • Save ross-spencer/a115ad2966b24c38e5bb85374ec76795 to your computer and use it in GitHub Desktop.
Save ross-spencer/a115ad2966b24c38e5bb85374ec76795 to your computer and use it in GitHub Desktop.
Non-alphanumerical (Latin English) File Format Extensions in Wikidata (Regex)
SELECT DISTINCT ?idExtension ?extension ?mediaType ?idExtensionLabel
WHERE
{
?idExtension wdt:P31 wd:Q235557 ;
wdt:P1195 ?extension .
FILTER (!regex(?extension, "[0-9a-zA-Z]", "i")) .
OPTIONAL { ?idExtension wdt:P1163 ?mediaType }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?extension ?mediaType
@ross-spencer
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment