본문 바로가기
javaScript/JS Tutorial

[자바스크립트]string 문자열에 따옴표 사용하기

by mooyou 2022. 9. 3.
728x90
300x250
SMALL

 

<p id="demo"></p>

<script>
let answer1 = "It's alright";
let answer2 = "He is called 'Johnny'";
let answer3 = 'He is called "Johnny"'; 

document.getElementById("demo").innerHTML =
answer1 + "<br>" + answer2 + "<br>" + answer3; 
</script>

문자열을 둘러 싸고 있는 따옴표와 일하지 않는다면 문자열에 따옴표 사용 가능하다.

 

 

특수 문자열로 변경하기

 

만약 다음과 같이 "" 큰따옴표 안에 "" 큰따옴표로 묶인 문자열은

let text = "We are the so-called "Vikings" from the north.";

"We are the so-called"까지만 잘리게 된다.

위와같은 상황을 해결하기 위해서  백슬래시 이스케이프 문자를 사용할 수 있다.

백슬래스( \ ) 이스케이프 문자는 특수 문자를 문자열 문자로 변환해준다.

 

 

예시

let text = "We are the so-called \"Vikings\" from the north."; 
let text2 = 'It\'s alright.';
let text3 = "The character \\ is called backslash.";

 

 

 

 

 

 

 

 

 

출처 : https://www.w3schools.com/js/js_strings.asp

728x90
반응형
LIST

댓글