﻿// JScript 文件
function Trim(str)
{
    return str.replace(/(^\s*)|(\s*$)/g, "");
}

