문자를 찾고 test하는 기존 정규식에서 ( ) 이런 식으로 감싸 주면 된다!
( )
'123.456.789'.split(/(\\.)/g);
참고
How to keep the delimiters of Regex.Split?