const re = /[가-힣]+/g
const sample =
"Pomodoro, 안녕하세요. Hello World! 아닌데요. Really 저 아니에요."
const result = re.exec(sample)
const result01 = sample.match(re)
console.log(result)
console.log(result01)
Created
December 12, 2021 06:55
-
-
Save trilliwon/0992c1edda827d7074d936552f31e98b to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment