JavaScript split_words_n_others()

Jmnote (토론 | 기여)님의 2017년 11월 24일 (금) 22:44 판

1 개요

JavaScript split_words_n_others()
function split_words_n_others(str) {
  var res = [];
  var pattern = /([A-Za-z]+)|([^A-Za-z]+)/g;
  while ((match = pattern.exec(str)) !== null) {
  	res.push( {word:match[0], is_word:(match[2]==undefined)} );
  }
  return res;
}
console.log(split_words_n_others("Hello world!"));
// [
// {word: "Hello", is_word: true}
// {word: " ", is_word: false}
// {word: "world", is_word: true}
// {word: "!", is_word: false}
// ]

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}