﻿/*!
* Tcyyland Web Util JavaScript Library
* Copyright (C) 2009 cmsland.com.,Ltd. All Rights Reserved. 
* 
*
*/

/*
* 字符串
*/
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.prototype.IncludeSpace = function() { return (this.search(/(\s)/) > -1); } 