Thread: string uppercase

  1. #1
    Registered User
    Join Date
    Nov 2004
    Posts
    86

    string uppercase

    is there a method/function in c++ that will let me convert a string to all uppercase characters? neither my net searches, nor the script I wrote to trawel through c++ headers for keywords, turned up anything at all.

    anyone have knowledge of such an method?

  2. #2
    Registered User
    Join Date
    Apr 2003
    Posts
    2,663
    It doesn't exist. However, you can use the char function toupper() to write your own function.

  3. #3
    Registered User
    Join Date
    Jan 2005
    Posts
    7,366
    This is a frequently answered question:

    http://faq.cprogramming.com/cgi-bin/...&id=1043284392

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. char Handling, probably typical newbie stuff
    By Neolyth in forum C Programming
    Replies: 16
    Last Post: 06-21-2009, 04:05 AM
  2. OOP Question DB Access Wrapper Classes
    By digioz in forum C# Programming
    Replies: 2
    Last Post: 09-07-2008, 04:30 PM
  3. Linked List Help
    By CJ7Mudrover in forum C Programming
    Replies: 9
    Last Post: 03-10-2004, 10:33 PM
  4. creating class, and linking files
    By JCK in forum C++ Programming
    Replies: 12
    Last Post: 12-08-2002, 02:45 PM
  5. Again Character Count, Word Count and String Search
    By client in forum C Programming
    Replies: 2
    Last Post: 05-09-2002, 11:40 AM