[JS] String

킴스·2021년 6월 28일
1

JS

목록 보기
24/27
post-thumbnail

string 이어 붙이기

concat() 문자열 붙이기

  • str1+concat(str2)

더하기 연산자 사용

  • str1 + str2

srting 특정 위치 알아내기

.charAt 함수 이용.

  • 첫 문자 : str.charAt(0)
  • 마지막 문자 : str.charAt(str.length-1)

대괄호 사용

  • 마지막 문자 : str[str.length-1]

부분 문자열 구하기

  • .substring(pos1, pos2) : pos1 에서 pos2까지의 부분 문자열 반환

    • pos2 생략시 pos1에서부터 마지막 까지의 문자열 반환
  • substr(pos, length) : pos에서 length길이 만큼의 부분 문자열 반환

    • length 생략시, pos에서 마지막까지의 문자열 반환
    • pos 가 음수인 경우, str.length - pos 로 동작

문자열 검색하기

  • indexOf(str) :
  • lastIndexOf(str) :
profile
코뽀

0개의 댓글