RedJini Blog

뒤로 검색

javascript String Trim

2006/08/23 11:53

function trim (strSource) {
  re = /^\s+|\s+$/g;
  return strSource.replace(re, '');
}

function ltrim (strSource) {
  re = /^\s+/g;
  return strSource.replace(re, '');
}

function rtrim (strSource) {
  re = /\s+$/g;
  return strSource.replace(re, '');
}

Tags

Javascript
이 페이지는 Textcube 1.9.3 : poco a poco 로 구동됩니다 데스크탑 화면