Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Convert a String to UpperCase
Convert a string to uppercase. This 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 uppercase? str.append(" "); printf("%s\n",str.getString()); str.toUpperCase(); printf("%s\n",str.getString()); // Prints: // //
|
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2008 Chilkat Software, Inc. All Rights Reserved.