ı'm trying to read a netlist(or text) file and seperate it to words. So far I have tried the code below but I cannot get rid of errors. Any ideas?
the text I am trying to read is like this:
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;
}
This is the whole program and it works fine:
If you are reading from a file, you can read the file directly. You do not need to read a line and then try to read that.
Things you missed:
std::ifstream netlist("netlist.txt");
!netlist.is_open()
netlist >> componentName >> node1 >> node2 >> value;
Note: this should also just work withss
once you initialised it with line:std::stringstream ss(line);
There is one caveat: when reading std::string from a stream, you will always read one word. This works in your case, but you need to be mindful about that.