
sem.langMatches( lang-tag as String, lang-range as String ) as Boolean
  Returns true if $lang-tag matches $lang-range 
  according to the basic filtering scheme defined in RFC4647.
  This XQuery function backs up the SPARQL langMatches() function.
  
This function is a built-in.
| Parameters | |
|---|---|
| lang-tag | The language tag. | 
| lang-range | The language range. | 
var triple = sem.triple(sem.iri("subject"), sem.iri("predicate"), "object");
sem.langMatches(sem.tripleSubject(triple), "fr");
=>
false
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.