ネットリスト (またはテキスト) ファイルを読み込んで単語に分けようとしています。これまでのところ、以下のコードを試しましたが、エラーを取り除くことができません。何か案は?
私が読もうとしているテキストは次のようなものです:
V1 1 0 12
R1 1 2 1000
R2 2 0 2000
R3 2 0 2000
using namespace std;
int main() {
ifstream Netlist;
string line;
string componentName;
int node1,node2;
double value;
while(getline(Netlist, line)) {
stringstream ss(line>>componentName >> node1>> node2>>value);
cout<<"Component name:" << componentName<< endl;
cout<<"Node1:" << node1<< endl;
cout<<"Node2:" << node2<< endl;
cout<<"Value:" <<value << endl;
}
return 0;
}