$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: rwgk_at_[hidden]
Date: 2001-08-16 16:48:25
--- In boost_at_y..., Jens Maurer <Jens.Maurer_at_g...> wrote:
> > void trim(string& [, characters to trim]);
> > void trim_beginning(string& [, characters to trim]);
> > void trim_end(string& [, characters to trim]);
>
> I haven't felt an urgent need for these, yet.
I do!
Has the Python string module been mentioned in this context
already?
http://www.python.org/doc/current/lib/module-string.html
Most frequently used by me:
split, strip (seems equivalent to trim above), join,
upper, lower, expandtabs, capitalize.
Ralf