방법: 1. "substring(Math.max(this.search(/S/),0),this.search(/Ss*$/)+1)" 문을 사용합니다. 2. "replace(/^)"를 사용합니다. s+/,'').replace(/s+$/,'')" 문.
이 튜토리얼의 운영 환경: windows7 시스템, javascript 버전 1.8.5, Dell G3 컴퓨터
javascript는 문자열
1에서 앞뒤 공백을 제거합니다. 첫 번째 비공백 문자 인덱스와 마지막 비공백 문자 인덱스 사이의 모든 문자는 가로채는 string
String.prototype.trimOne = function () { return this.substring(Math.max(this.search(/\S/), 0), this.search(/\S\s*$/)+1) };
2.replace() 메서드를 반환하고, 문자열 시작 부분의 모든 공백을 빈 문자열로 바꾸고, 그런 다음 문자열 끝의 문자를 바꿉니다. 모든 공백을 빈 문자열로 바꿉니다
String.prototype.trimTwo = function () { return this.replace(/^\s+/, '').replace(/\s+$/, ''); };
개선하고 단순화하면 더 우아해 보입니다
String.prototype.trimThree = function () { return this.replace(/^\s+|\s+$/g, '') };
[관련 권장 사항: javascript 학습 튜토리얼]
위 내용은 자바스크립트 문자열 앞뒤 공백 제거하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!