
ort:string-content( $value as ort:value ) as xs:string*
Returns the content of a string tensor.
| Parameters | |
|---|---|
| $value | The string tensor. |
let $value := ort:string(("hello", " ", "world", "this is", "", " an example!"), (2,3))
return ort:string-content($value)
=>
hello
world
this is
an example!
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.