Created
December 30, 2024 09:07
-
-
Save ross-spencer/a115ad2966b24c38e5bb85374ec76795 to your computer and use it in GitHub Desktop.
Non-alphanumerical (Latin English) File Format Extensions in Wikidata (Regex)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Author
ross-spencer
commented
Dec 30, 2024
- https://w.wiki/CZwW
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment