val parsedMeaning = meaningString.replace("[^가-힣.\\s]".toRegex(), "") //한글 . 공백만 추출 //regex // 가~힣(한글), . (온점) \\s(공백) ^(제외)