javascript 썸네일형 리스트형 javascript - replace("find","replacestr") 자바 스크립트에서 replace() 함수는 의 기능에서 반복되는 문자가 있을 시 예를 들어 (-) 하이픈 --;; 날짜에 2008-11-06 이라는 날짜 문자에서 - 을 모두 '' 로 처리 하고 싶다고 가정한다면 JAVA 에서는 replaceAll 메소드가 있지만.. javascript 에서는 그런 메소드가 없다... 이럴 때는... 아래 예재를 참고 하길 바란다. Example 3 - Global Search In the following example we will perform a global match, and the word Microsoft will be replaced each time it is found: The output of the code above will be: Welcome .. 더보기 문자열 스크립트 - 유용한 자바스크립트 1 /* * 왼쪽에 위치한 whitespace 문자를 제거 */ function ltrim(str) { return str.replace(/^\s+/, ""); } /* * 오른쪽에 위치한 whitespace 문자를 제거 */ function rtrim(str) { return str.replace(/\s+$/, ""); } /* * 양쪽의 whitespace 문자를 제거 */ function trim(str) { return rtrim(ltrim(str)); } /* * 주어진 문자열의 왼쪽을 padding 문자로 채운다 */ function lpad(str, n, padding) { if (str.length >= n) return str; else { var len = n - str.length; va.. 더보기 이전 1 다음