Convert documents to string by joining words
newStr = joinWords(documents)
newStr = joinWords(documents,delim)
example
newStr = joinWords(documents) converts a tokenizedDocument array to a string array by joining the words in each document with a space.
newStr
documents
tokenizedDocument
newStr = joinWords(documents,delim) joins the words with delimiter delim instead of a space.
delim
collapse all
Convert a tokenizedDocument array to a string array by joining the words with a space.
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
str = joinWords(documents)
str = 2x1 string "an example of a short sentence" "a second short sentence"
Convert a tokenizedDocument array to a string array by joining the words with an underscore.
str = joinWords(documents,"_")
str = 2x1 string "an_example_of_a_short_sentence" "a_second_short_sentence"
Input documents, specified as a tokenizedDocument array.
Delimiter to join words, specified as a string scalar, character vector, or scalar cell array containing a character vector.
Example: "_"
"_"
Example: '_'
'_'
Example: {'_'}
{'_'}
Data Types: char | string | cell
char
string
cell
Output text, returned as a string array, a character vector, or cell array of character vectors. str and newStr have the same data type.
str
context | doc2cell | doclength | string | tokenizedDocument
context
doc2cell
doclength
You have a modified version of this example. Do you want to open this example with your edits?