If you have more iterators inside one function, how would you call them?

For instance:

Code:
std::vector<std::string>::iterator vec_iter;
std::vector<std::string>::iterator vec2_iter;
std::set<std::string>::iterator set_iter;
Or is there any better system to keep short and 'pretty' names?