hello all i need in my application the feathers that the good old egrep and wget give me , but i can't execute them as separate process i need them as embedded functions in my application is there any way to do that ? cross platform and c++

link|improve this question

65% accept rate
Why can't you execute them as separate processes? – William Pursell Aug 3 '09 at 11:01
feedback

3 Answers

For getting wget functionality you could use libcurl.

link|improve this answer
feedback

You can use a regular expressions library. Boost::Regex is a common option. A less portable option for now is the Visual C++ Feature Pack or the Dikumware TR1 implementations, which already come with regular expressions support. Finally you can search google for "C++ regular expressions" and you should be offered with other options.

link|improve this answer
feedback

Judging from this mailing list entry, wget is probably not available in library form currently:

http://www.mail-archive.com/bug-wget@gnu.org/msg00431.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.