Search code examples
programming-languagesproject

Suitable compiled language for new project


I'm about to develop some commercial software that will run on OSX and Linux. The program will be doing some heavy string manipulation, base64 encoding, zlib compression and may require http libraries in the future.

Does anyone have a suggestion?

Many thanks in advance, Toby.


Solution

  • C++.

    std::string and boost::regex for the string manipulation. zlib has both C and C++ bindings. You might like cURL for no-GUI HTTP stuff. Use a cross-platform GUI toolkit (I suggest wxWidgets or Qt) if you need windows.