Main Content

joinWords

단어를 결합하여 문서를 문자열로 변환

설명

예제

newStr = joinWords(documents)는 각 문서의 단어를 공백으로 결합하여 tokenizedDocument 배열을 string형 배열로 변환합니다.

예제

newStr = joinWords(documents,delim)은 공백 대신에 구분자 delim을 사용하여 단어를 결합합니다.

예제

모두 축소

단어를 공백으로 결합해 tokenizedDocument 배열을 string형 배열로 변환합니다.

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"

단어를 밑줄로 결합해 tokenizedDocument 배열을 string형 배열로 변환합니다.

str = joinWords(documents,"_")
str = 2x1 string
    "an_example_of_a_short_sentence"
    "a_second_short_sentence"

입력 인수

모두 축소

입력 문서로, tokenizedDocument 배열로 지정됩니다.

단어를 결합할 구분자로, string형 스칼라, 문자형 벡터 또는 문자형 벡터를 포함하는 스칼라 셀형 배열로 지정됩니다.

예: "_"

예: '_'

예: {'_'}

데이터형: char | string | cell

출력 인수

모두 축소

출력 텍스트로, string형 배열로 반환됩니다.

데이터형: string

버전 내역

R2017b에 개발됨