Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. int main()
  2. {
  3. std::ifstream file("address.txt");
  4. std::istreambuf_iterator<char> eos;
  5. std::istreambuf_iterator<char> iter(file);
  6. std::string needle = "8.0.4";
  7.  
  8. std::istreambuf_iterator<char> iter2 = std::search(iter, eos, needle.begin(), needle.end());
  9.  
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement