Split text tokens where words have concatenated

暴徒暴徒 MemberPosts:37Contributor I
edited June 2019 inHelp
I have text tokens like
stylesexploration
expressionresearch
technologypractice
curriculaimprovisationsurvey

where the punctuation and or spaces are missing in the original text
Besides using a list of replace "expressionresearch" with 2 tokens "expression" & "research" is there a smarter way to handle the situation

Answers

  • MartinLiebigMartinLiebig Administrator, Moderator, Employee, RapidMiner Certified Analyst, RapidMiner Certified Expert, University ProfessorPosts:3,404RM Data Scientist
    What ever you do, you need to have a list of words, which can be inside. Some kind of dictionary.

    then you might do things using some Generate Attributes functions like contains or find or so..


    ~Martin
    - Sr. Director Data Solutions, Altair RapidMiner -
    Dortmund, Germany
  • JEdwardJEdward RapidMiner Certified Analyst, RapidMiner Certified Expert, MemberPosts:578Unicorn
    One approach might be to try a word tokenizer for non-English characters such as Jieba (link below). You can then provide it with your own dictionary of words to split by. Hope that helps.

    https://github.com/fxsjy/jieba
Sign InorRegisterto comment.