IRI(string) converts a string into an IRI.
STR(value) converts a value into a string.
STRLEN(string) - returns the length of a string.
SUBSTR(string,beginpos,length) - returns a substring of a given string.
LCASE(string) - returns a string in lowercase.
UCASE(string) - returns a string in uppercase.
STRSTARTS(string,comparestring) - compares if a string starts with the comparestring.
STRENDS(string,comparestring) - compares if a string ends with the comparestring.
CONTAINS(string,comparestring) - compares if a string contains the comparestring somewhere within the
string.
STRBEFORE(string,comparestring) - returns the part of the string before the comparestring if contained
in the string. If not, it returns ""
STRAFTER(string,comparestring) - returns the part of the string after the comparestring if contained in
the string. If not, it returns ""
ENCODE_FOR_URI(string) - encodes an string to a URI(ex: a space is converted into %20).
CONCAT(string1,string2,string3,...) - returns a concated string.
LANGMATCHES(languagetag, languagerange) - checks if the
range matches the language tag.
REGEX(string,pattern,flag) - checks a string by a specific
regex pattern