void Split(const string &strValue,const string &strSplit,vector<string> &vectArray)
{string strTemp = strValue;
int nIndex = strTemp.find(strSplit);
while(nIndex >= 0)
{
string strSub = strTemp.substr(0,nIndex);
vectArray.push_back(strSub);
strTemp.erase(0,nIndex + strSplit.length());
nIndex = strTemp.find(strSplit);
}
if(!strTemp.empty())
{
vectArray.push_back(strTemp);
}
}