반응형
Node.js | split() function
function splitStr(str) {
// Function to split string
var string = str.split("*");
console.log(string);
}
// Initialize string
var str = "Welcome*to*GeeksforGeeks";
// Function call
splitStr(str);
반응형
'프로그래밍 > Script' 카테고리의 다른 글
[javascript] How to output numbers with leading zeros in JavaScript? ZeroPad (0) | 2021.10.14 |
---|---|
[Node.js] moment 사용하기 (0) | 2021.10.13 |
[jQuery] id like 찾기 (0) | 2021.08.19 |
메일 수신확인 원리 - 웹서비스 (0) | 2021.08.11 |
[Node.js] Path : 파일 경로를 다루고 변경하는 유틸리티가 포함되어 있다 (0) | 2021.08.10 |