コード例 #1
0
ファイル: gutils_string.cpp プロジェクト: gasparfm/glibutils
  ustring trimLeft( ustring &str, const ustring trimChars)
  {
    ustring::size_type pos = str.find_first_not_of( trimChars );
    str.erase( 0, pos );

    return str;
  }