观察一个正确的字符,例如str="A10" str中非数字的字符只有一个,且其为第一个字符,且其为方向,这里为A; str中不能只存在一个方向,故str大小大于1。 只处理符合上述标准的字符串即可。 #include<iostream> #include<vector> using namespace std; auto getSubStr(string& s) { pair<int,int> position={0,0}; //要返回的位置 int begin=0, end=0, no_num=0, step;//begin:...