hello
I have a program like the last regex program in
this link:
inside the while loop *i++ returns the url's found
with regex:
while(i !=
j)
{
std::cout << *i++
<< std::endl;
}
i need to pass *i++ to a function that "accepts"
the url string/address/pointer
(the function is in different c++ file) as a
string
(before it the function header was char**
argv)
how do i pass *i++ to the function in order to make
it accept the *i++ parameter?