Notice
Recent Posts
Recent Comments
Link
투케이2K
19. (javascript/자바스크립트) charAt 특정 문자 출력, split 특정 문자열 기준 분리, substring 특정 문자열 부분 출력 실시 본문
JavaScript
19. (javascript/자바스크립트) charAt 특정 문자 출력, split 특정 문자열 기준 분리, substring 특정 문자열 부분 출력 실시
투케이2K 2021. 6. 5. 21:19/* =========================== */
[ 개발 환경 설정 ]
개발 툴 : Edit++
개발 언어 : javascript
/* =========================== */
/* =========================== */
[소스 코드]
<script>
/*
[JS 요약 설명]
1. charAt(인덱스) : 특정 문자를 출력할 때 사용합니다
2. split(분리 문자) : 특정 문자를 기준으로 분리할 때 사용합니다
3. substring(시작, 길이) : 특정 문자열을 부분 출력할 때 사용합니다
*/
/* 전역 변수 부분 */
var str_value = "hello&javasctipt&!!";
/* 메인 함수 부분 */
function main(){
/* 원본 문자 출력 실시 */
console.log("원본 : " + str_value);
/* 특정 문자 출력 실시 */
var char_data = str_value.charAt(0);
console.log("특정 문자 출력 : " + char_data);
/* 특정 문자열 분리 실시 */
var str_arr = new Array(str_value.split("&"));
console.log("특정 문자 분리 [전체] : " + str_arr);
console.log("특정 문자 분리 [개별] : " + str_value.split("&")[0]);
console.log("특정 문자 분리 [개별] : " + str_value.split("&")[1]);
console.log("특정 문자 분리 [개별] : " + str_value.split("&")[2]);
/* 특정 문자열 부분 출력 실시 */
//0번 부터 시작 ~ 5개까지 출력 (0, 1, 2, 3, 4, 5)
var str_split = str_value.substring(0, 5);
console.log("특정 문자열 출력 : " + str_split);
}
</script>
/* =========================== */
/* =========================== */
[결과 출력]
/* =========================== */
/* =========================== */
[요약 설명]
/*
[JS 요약 설명]
1. charAt(인덱스) : 특정 문자를 출력할 때 사용합니다
2. split(분리 문자) : 특정 문자를 기준으로 분리할 때 사용합니다
3. substring(시작, 길이) : 특정 문자열을 부분 출력할 때 사용합니다
*/
/* =========================== */
반응형
'JavaScript' 카테고리의 다른 글
Comments