Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
Convert a String to LowerCaseDownloads: MS Windows Visual C/C++ Libraries Linux/CentOS C/C++ Libraries MAC OS X C/C++ Libraries Solaris C/C++ Libraries C++ Builder Libraries Convert a string to lowercase. This C++ string class handles European characters with diacritics. CkString str; // Make sure we are in ANSI mode, and not utf-8. str.put_Utf8(false); // Can characters with diacritics be converted to lowercase? str.append(" "); printf("%s\n",str.getString()); str.toLowerCase(); printf("%s\n",str.getString()); // Prints: // //
|
© 2000-2010 Chilkat Software, Inc. All Rights Reserved.