把string二维数组空行去掉
时间: 2023-07-27 17:21:38 浏览: 171
java String 转成Double二维数组的方法
可以使用以下的代码来去掉二维数组中的空行:
```c++
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int main() {
string arr[3][3] = {{"hello", "", "world"}, {"", "", ""}, {"", "foo", ""}};
vector<string> temp;
for (int i = 0; i < 3; i++) {
string s;
for (int j = 0; j < 3; j++) {
s += arr[i][j];
}
if (s != "") {
temp.push_back(s);
}
}
string newArr[temp.size()][3];
for (int i = 0; i < temp.size(); i++) {
string s = temp[i];
for (int j = 0; j < 3; j++) {
newArr[i][j] = s.substr(0, 1);
s.erase(0, 1);
}
}
for (int i = 0; i < temp.size(); i++) {
for (int j = 0; j < 3; j++) {
cout << newArr[i][j] << " ";
}
cout << endl;
}
return 0;
}
```
这段代码将原来的二维字符串数组转换为一个存储非空行的vector,然后再将vector转换回字符串数组。最终输出的是去掉空行后的字符串数组。
阅读全文