Strings
The user should browse the index of functions to get a detailed list of available functions. He can also open String.hxx.
The most useful functions may be:
find_replacereplaces a pattern by another within a string.splitextracts from a string the sub-strings that are separated by given delimiters.to_str: conversion from any type (for which operator<< is defined) to string.lower_caseandupper_casechange the case.is_numtests whether a string represents a number.is_integer(is_unsigned_integer) tests whether a string represents an integer (unsigned integer).trimremoves useless characters (default: blanks, line breaks and tabulations) at both ends of a string.print(const vectorprints on screen a STL vector.& v)