﻿String.prototype.trim = function()
{   
    return this.replace(/(^\s*)|(\s*$)/g, "");
}
String.prototype.Trim = function()
{   
    return this.replace(/(^\s*)|(\s*$)/g, "");
}


