나를 제외한 천재들 블로그


- '체크하기' 태그의 글 목록 -

체크하기

    [JS] 개행문자 제거하기

    [JS] 개행문자 제거하기

    코드 // 줄바꿈 제거 str.replace(/\n/g, ""); // 엔터 제거 str.replace(/\r/g, ""); // 공백 제거 str.replace(/\s*/g, ""); // 개행문자 모두 제거 str.replace(/\n|\r|\s*/g, "");