is there a way to make a text file that is all caps into lowercase

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • BlackCrayon
    Too lazy to set a custom title
    • Jun 2003
    • 19634

    #1

    is there a way to make a text file that is all caps into lowercase

    automatically?
    you don't know you're wearing a leash if you sit by the peg all day..
  • jimthefiend
    So Fucking Banned
    • Oct 2003
    • 18889

    #2
    http://www.sharewareconnection.com/another-notepad.htm

    Comment

    • SmokeyTheBear
      ►SouthOfHeaven
      • Jun 2004
      • 28609

      #3
      <?php
      $text = file_get_contents("file.txt");
      $text = strtolower($text);
      echo $text;
      ?>
      hatisblack at yahoo.com

      Comment

      • micker
        Confirmed User
        • Nov 2005
        • 748

        #4
        on a linux/unix/mac you could do this;
        cat YOURTEXTFILE.TXT | tr '[:upper:]' '[:lower:]'
        on a windows box you'd probably have to buy something

        if you dont have access to a system that will do it, paste it here and I'll convert it for you.

        Comment

        • MetaMan
          I AM WEB 2.0
          • Jan 2003
          • 28682

          #5
          <style type="text/css">
          <!--
          .unnamed1 {
          text-transform: lowercase;
          }
          -->
          </style>
          </head>

          <body class="unnamed1">
          text
          </body>
          </html>

          Comment

          • micker
            Confirmed User
            • Nov 2005
            • 748

            #6
            lots of good solutions in here....

            Comment

            • BlackCrayon
              Too lazy to set a custom title
              • Jun 2003
              • 19634

              #7
              thanks guys!
              you don't know you're wearing a leash if you sit by the peg all day..

              Comment

              • donkevlar
                Confirmed User
                • Sep 2006
                • 4325

                #8
                Microsoft word: Format - > change case
                [email protected]

                Comment

                Working...