<div dir="ltr">Hi<br><br>[snip]<br> <br>><br>> I did not see any special syntax or FILTER or Label service commands to help with splitting apart a Label by whitespace and then applying a filter on each string.<br>><br>> How would I accomplish this ? <br><br>Maybe with the function STRAFTER <a href="https://www.w3.org/TR/sparql11-query/#func-strafter">https://www.w3.org/TR/sparql11-query/#func-strafter</a><br><br>Example of use:<br><br>SELECT ?item ?itemLabel ?itemLabelafter WHERE {<br>    ?item  wdt:P19 wd:Q647 ; rdfs:label ?itemLabel.<br>    FILTER (lang(?itemLabel) = "fr").<br>    BIND ( STRAFTER(?itemLabel, " ") AS ?itemLabelafter )<br>}<br>LIMIT 10<br><br>Cdlt, ~nicolas</div>