문자열 앞뒤, 왼쪽과 오른쪽의 공백을 제거하세요.
String.prototype.trim = function(){ return this.replace(/^s |s $/g,"")}
String.prototype.ltrim = function(){ return this.replace(/^s /g, "")}
String.prototype.rtrim = function(){ return this.replace(/s $/g,"")}
String 객체에 트림 메소드를 추가합니다.
앞으로 이렇게 사용하시면 됩니다.
var s = " abc ";
s = s.trim(); // s는 문자열이므로 방금 정의한 Trim 메서드를 사용할 수 있습니다.
경고