C++ Strings

Documentation Links

Boost and Strings

  • tokenizer
  • string manip functions
  • external link to boost::spirit

C++ Strings vs C Strings

Performance woes of C strings

  • Link to Joel for starters?

Conversion from C strings

  • How to interface with functions expecting C strings
    • Read only strings (std::string::c_str())
    • Read/Write strings (std::vector)
  • Old vs New
    • Comparison
    • Manipulation
      • Characterwise
      • Substringwise
      • Stringwise