#include<iostream>#include<string>#include<sstream>#include<vector>using namespace std;template<typename T>T str_To(const string& str);template<typename T>int mygetsubStr(vector<T>& vecsubstr, const string& sourcestr,const string& _delims="",const string& _stopstr="");int mai...