Need a tool that converts ALL CAPS to First Letter Of Each Word Caps

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mkx
    Confirmed User
    • Nov 2003
    • 4001

    #1

    Need a tool that converts ALL CAPS to First Letter Of Each Word Caps

    Anyone Know Of Anything?
  • psili
    Confirmed User
    • Apr 2003
    • 5526

    #2
    If you ran a string through a php script:

    $str="SOME STRING BLAH BLAH BLAH";
    echo ucfirst(strtolower($str));

    ???
    Your post count means nothing.

    Comment

    • Yngwie
      I am an Alien from space
      • May 2003
      • 11118

      #3
      in what exactly? a file name? like PIC.JPG etc..?

      if so you can try Princeton File Renamer
      ICQ: 16544251 - Skype: gator37 @ eastlink.ca - email: yngwie @ isys.ca

      Comment

      • who
        So Fucking Banned
        • Aug 2003
        • 19593

        #4
        ucwords() php function

        Comment

        • Jace
          FBOP Class Of 2013
          • Jan 2004
          • 35562

          #5
          just paste the all caps shit into a thread on gfy, it will do it for you

          Comment

          • Jace
            FBOP Class Of 2013
            • Jan 2004
            • 35562

            #6
            You can even paste it into the quick reply, then hit go advanced, and it will transform it for you

            Comment

            • Jace
              FBOP Class Of 2013
              • Jan 2004
              • 35562

              #7
              This Was All Caps When I Hit Reply

              Comment

              • psili
                Confirmed User
                • Apr 2003
                • 5526

                #8
                Or paste it into MS Word, hilight the text, Format -> Change Case -> Title Case option.
                Your post count means nothing.

                Comment

                • mkx
                  Confirmed User
                  • Nov 2003
                  • 4001

                  #9
                  its in excel, text, line by line.

                  Comment

                  • mkx
                    Confirmed User
                    • Nov 2003
                    • 4001

                    #10
                    Thanks, I will try all of those, I think MS Word only shows it in msword and when you copy it to another program it shows the caps again but I will try all these Thanks

                    Comment

                    • ObnoxiousBitch
                      Retired Curmudgeon
                      • May 2003
                      • 133

                      #11
                      If you can avoid using MS Word, do so. Nothing can fuck up text like a Microsoft application. I swear by Textpad (you can get a trial). If you can export the excel file as CSV text, you can do the change case thing in Textpad, and then reimport the entries into a new Excel file.
                      Rox
                      obnoxiousbitch.com

                      Comment

                      • Sharky01276
                        Confirmed User
                        • Feb 2006
                        • 103

                        #12
                        I could write a program that does this easily,

                        Would you want it web based?
                        Where is the text going?

                        Comment

                        • Matiz
                          Confirmed User
                          • Mar 2004
                          • 1740

                          #13
                          Try textmagician, it's free
                          ...

                          Comment

                          • schneemann
                            Confirmed User
                            • Oct 2006
                            • 749

                            #14
                            Originally posted by who
                            ucwords() php function
                            Good try, but you gotta make sure that there's no punctuation or other characters in the string.

                            HE SAID HIS NAME WAS "JOHN"
                            would become
                            He Said His Name Was "john" because PHP regards " as the beginning of the word.

                            Take a look at http://us3.php.net/ucwords for some potential fixes.
                            Deranged World

                            Comment

                            Working...