Hello,

On Wed, Sep 30, 2009 at 2:47 PM, Curtis Olson <curt0...@flightgear.org> wrote:
> Ok, duh! I see that is a single character function, but there has to be a
> <string> class function or it can't be too hard to whip up a little function
> ourselves.

I don't think there's an STL function, but there is
boost::to_lower(str) or even something like:

for (unsigned i=0; i < str.length(); ++i) {
    str[i] = tolower(str[i]);
  }



-- 
Simon Hollier

------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

Reply via email to