File: StringUtils.h
Description:
namespace Pythia7
CLASS
StringUtils
Public members:
typedef vector<string> StringVector;
static StringVector split(string s, string ws = " \t\n");
Return a vector of string containing the substrings of 's'
defined by the separating characters in 'ws'.
static string car(string s, string ws = " \t\n");
Return the first substring of 's'.
static string cdr(string s, string ws = " \t\n");
Return 's' after removing the first substring (and possible 'ws'
characters').
DEFINED MACROS
INCLUDED FILES
Pythia7/Config/Pythia7.h
StringUtils.icc