Thread: Libraries

  1. #1
    Registered User
    Join Date
    Oct 2003
    Posts
    83

    Libraries

    I've considered learning Python, but then I thought that I could probobly get everything I need from Python in a C++ library. What are some libaries for me needs...

    Strings - Lowercasing strings, comparing strings, concatting strings, all stuff like that.

    Config files - Reading configuration files and writing to them in an organized way (not the std file library...)

    Also - Where can I get a tutorial on command line arguments?

  2. #2
    vae victus! skorman00's Avatar
    Join Date
    Nov 2003
    Posts
    594
    anything that you find in iostream or the STL should give you everything you'll ever need to do with strings. As for organizing the input and output of your files, that's all up to you. I doubt there are any libraries that will make it easier than what you'll find in fstream. Command line arguments are what you make of them. You can have an entire file path as an argument, as long as you account for it.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. GCC: Compiling with both static and shared libraries
    By eatwithaspork in forum C Programming
    Replies: 4
    Last Post: 06-23-2008, 01:48 PM
  2. Replies: 7
    Last Post: 05-13-2008, 03:47 AM
  3. MinGW thread-safe runtime libraries
    By Mario F. in forum C++ Programming
    Replies: 3
    Last Post: 08-21-2006, 08:15 AM
  4. Libraries and headers
    By darksaidin in forum C++ Programming
    Replies: 10
    Last Post: 07-23-2003, 06:24 AM
  5. QT and external libraries
    By Quacker in forum Linux Programming
    Replies: 1
    Last Post: 04-08-2003, 07:02 AM