"자바스크립트 split words n others()"의 두 판 사이의 차이

(새 문서: ==개요== ;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번째 줄: 1번째 줄:
{{DISPLAYTITLE:JavaScript split_words_n_others()}}
==개요==
==개요==
;JavaScript split words_n_others()
;JavaScript split_words_n_others()


<source lang='JavaScript'>
<source lang='JavaScript'>

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