I am trying to parse this page!
string str2 ("<span class=\"time_rtq_ticker\"><span id=\"yfs_l10_usdsgd=x\">");
size_t found;
// different member versions of find in the same order as above:
found=sdata.find(str2);
if (found!=string::npos)
cout << "first 'needle' found at: " << int(found) << endl;
How can i obtain the Currency rate after i get the position of "needle" which is the pattern, i want it stop parsing after
Sorry i am doing this for a small project of mine, not commercial, just some mini work