Main Content

joinWords

Convert documents to string by joining words

Description

example

newStr = joinWords(documents) converts a tokenizedDocument array to a string array by joining the words in each document with a space.

example

newStr = joinWords(documents,delim) joins the words with delimiter delim instead of a space.

Examples

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 Arguments

collapse all

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

Output Arguments

collapse all

Output text, returned as a string array.

Data Types: string

Version History

Introduced in R2017b