본문 바로가기

study

자스 문자열체크 및 대소문자구분

String.length

스트링의 길이를 알려준다.

 

예 1>

01 var x = "Netscape";
02 var empty = "";
03 
04 console.log("Netspace is " + x.length + " code units long"); // 8
05 console.log("The empty string is has a length of " + empty.length); /* should be 0 */

 

String.toLowerCase, String.toUpperCase

불러들인 스트링 값을 소문자(대문자)로 변환 한다.

 

예 2>

01 var sampleText="AlPhaBet";
02 document.write(sampleText.toLowerCase() 
03         + " " + sampleText.toUpperCase());
04         // alphabet ALPHABET

 

'study' 카테고리의 다른 글

JavaScript CSS 찾아 헤메이던.. 그녀석  (0) 2014.01.14
Row_Number() 사용법  (0) 2013.12.28
HTML5 크로스 브라우징 시 오브젝트를 이용한 동영상 재생  (0) 2013.09.03
HTTP REFER  (0) 2013.08.14
request.servervariables  (0) 2013.07.16