Help CenterHelp Center
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, character vector, or a 1-by-1 cell array containing a character vector.
Data Types: string | char | cell
string
char
cell
Introduced in R2017b
extractFileText | extractHTMLText | readPDFFormData | tokenizedDocument
extractHTMLText
readPDFFormData
You have a modified version of this example. Do you want to open this example with your edits?
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
Select the China site (in Chinese or English) for best site performance. Other bat365 country sites are not optimized for visits from your location.
Contact your local office