Javascript String관련 Method

roglog·2021년 4월 1일
0

trim


  • 문자열 양 끝의 공백을 제거함
  • Ex)
    const value = "    Hi there!    ";
    console.log(value.trim());
    // output: "Hi there!"

toLowerCase


  • 문자열을 소문자로 바꿈
  • Ex)
    const value = "Hi There!";
    console.log(value.toLowerCase());
    // output: "hi there!"

toUpperCase


  • 문자열을 대문자로 바꿈
  • Ex)
    const value = "Hi There!";
    console.log(value.toUpperCase());
    // output: "HI THERE!"

replace


  • 어떤 패턴이 일치하는 일부 또는 모든 부분이 교체된 새로운 문자열 반환(정규식 사용 가능)
  • Ex)
    const value = " Hi there! ";
    console.log(value.replace("", "-"));
    // output: "-Hi there! "
    console.log(value.replace(/ /g, "-"));
    // output: "-Hi-there!-"
profile
Full Stack Developer 📚

0개의 댓글