Write documents to text file
writeTextDocument(documents,filename)
writeTextDocument(documents,filename,'Append',true)
example
writeTextDocument(documents,filename) writes documents to the specified text file. The function writes one document per line with a space between each word in UTF-8.
documents
filename
writeTextDocument(documents,filename,'Append',true) appends to the file instead of overwriting.
collapse all
Write an array of documents to a text file.
documents = tokenizedDocument([ "an example of a short sentence" "a second short sentence"])
documents = 2x1 tokenizedDocument: 6 tokens: an example of a short sentence 4 tokens: a second short sentence
filename = "documents.txt"; writeTextDocument(documents,filename)
Write an array of documents to a text file by appending the documents one at a time.
Create an array of tokenized documents.
Write the first document to the file.
filename = "documents.txt"; writeTextDocument(documents(1),filename)
View the contents of the file using extractFileText.
extractFileText
str = extractFileText(filename)
str = "an example of a short sentence"
Append the second document to the text file.
writeTextDocument(documents(2),filename,'Append',true)
str = "an example of a short sentence a second short sentence"
tokenizedDocument
Input documents, specified as a tokenizedDocument array.
Name of the file, specified as a string scalar or character vector.
Data Types: string | char
string
char
extractFileText | extractHTMLText | readPDFFormData | tokenizedDocument
extractHTMLText
readPDFFormData
You have a modified version of this example. Do you want to open this example with your edits?