javascript trim 빈 칸 함수 구현 코드

877 단어 자바 scripttrim
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,""); } [Ctrl+A 전체 주석:외부 Js 를 도입 하려 면 페이지 를 새로 고침 해 야 실행 할 수 있 습 니 다.]함수 로 쓸 수 있 습 니 다

<script type="text/javascript">
function trim(str){ //
return str.replace(/(^\s*)|(\s*$)/g, "");
}
function ltrim(str){ //
return str.replace(/(^\s*)/g,"");
}
function rtrim(str){ //
return str.replace(/(\s*$)/g,"");
}
</script>

좋은 웹페이지 즐겨찾기