javascript String Trim

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, '');
}

2006/08/23 11:53 2006/08/23 11:53
태그 :
글 걸기 주소 : 이 글에는 트랙백을 보낼 수 없습니다