Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Marklogic 中的 search:search API 在文本文件 (.txt) 中进行搜索。我想将一个 txt 文件上传到 Marklogic 并使用 search:search API 来搜索其内容。我该怎么做 ?
search:search() 应该能够在文本文档中找到命中。
xdmp:document-insert("/text.txt", text { "Hello World " } )
然后
search:search("Hello")
应该回击。(是的,文本文档表示为在根处具有 XML 文本节点的文档)。