투케이2K

26. (javascript/자바스크립트) indexOf 문자 포함 및 인덱스 위치, startsWith 및 endsWith 특정 문자 시작 종료, includes 문자 포함 확인 본문

JavaScript

26. (javascript/자바스크립트) indexOf 문자 포함 및 인덱스 위치, startsWith 및 endsWith 특정 문자 시작 종료, includes 문자 포함 확인

투케이2K 2021. 6. 6. 10:40

/* =========================== */

[ 개발 환경 설정 ]

개발 툴 : Edit++

개발 언어 : javascript

/* =========================== */

/* =========================== */

[소스 코드]

 

    <script>
    	/* 
    	[JS 요약 설명]
    	1. indexOf : 특정 문자가 포함되는 인덱스 위치값을 반환해줍니다 (없으면 -1값)
    	2. startsWith : 특정 문자로 시작하는지 확인합니다
    	3. endsWith : 특정 문자로 종료되는지 확인합니다
    	4. includes : 특정 문자를 포함하는지 확인합니다
    	*/    	


    	/* 메인 함수 부분 */
    	function main(){
    		
    		/* 초기 변수 선언 실시 */    		
    		var str_data = "hello javascript";    		
    		console.log( "초기 문자열 : " + str_data);

    		/* indexOf 특정 문자 포함 확인 */
    		var str_indexOf_one = str_data.indexOf("javascript");
    		var str_indexOf_two = str_data.indexOf("web");
    		console.log( "indexOf [javascript 포함 확인] : " + str_indexOf_one);
    		console.log( "indexOf [web 포함 확인] : " + str_indexOf_two);

    		/* startsWith , endsWith 특정 문자로 시작 및 종료 확인 */ 
    		var str_start = str_data.startsWith("hello");
    		var str_end = str_data.endsWith("web");
    		console.log( "startsWith [hello 시작 확인] : " + str_start);
    		console.log( "endsWith [web 종료 확인] : " + str_end);

    		/* includes 특정 문자 포함 확인 */
    		var str_includes_one = str_data.includes("hello");
    		var str_includes_two = str_data.includes("web");
    		console.log( "includes [hello 포함 확인] : " + str_includes_one);
    		console.log( "includes [web 포함 확인] : " + str_includes_two);
    		
    	}

    </script>

/* =========================== */

/* =========================== */

[결과 출력]

/* =========================== */

/* =========================== */

[요약 설명]

/* 
[JS 요약 설명]
1. indexOf : 특정 문자가 포함되는 인덱스 위치값을 반환해줍니다 (없으면 -1값)
2. startsWith : 특정 문자로 시작하는지 확인합니다
3. endsWith : 특정 문자로 종료되는지 확인합니다
4. includes : 특정 문자를 포함하는지 확인합니다
*/

/* =========================== */

반응형
Comments