자바스크립트 split words n others()

Jmnote (토론 | 기여)님의 2017년 11월 24일 (금) 22:44 판 (새 문서: ==개요== ;JavaScript split words_n_others() <source lang='JavaScript'> function split_words_n_others(str) { var res = []; var pattern = /([A-Za-z]+)|([^A-Za-z]+)/g; while ((m...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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 }}