tags:

views:

51

answers:

2

I'm new to C++ and cgicc, and I want to know if there is an easy way to parse the get parameters to the cgi script? ?action=yes&function=no into an array or something like that?

A: 

I'd recommend having a look at boost regex library. http://www.boost.org/doc/libs/release/libs/regex/

shuttle87
Are there any available functions or libraries which I can use immediately?
TheOnly92
@TheOnly92: What do you mean by "use immediately?
shuttle87
Well, any libraries that I can include in my source file and just use the function...
TheOnly92