I was solving attribute parser on hackerRank but I am stuck with delimiter. I want to grab an element from ("any thing"), in this case it will give me (any thing), but when I do this:
while (getline(ob, item, '""')) {//but its be true when i put single one ('"')
std::cout << item << "\n";
}
It gives me this error:
E0304 no instance of "getline" matches the argument list