![]() |
is there a way to make a text file that is all caps into lowercase
automatically?
|
|
<?php
$text = file_get_contents("file.txt"); $text = strtolower($text); echo $text; ?> |
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. |
<style type="text/css">
<!-- .unnamed1 { text-transform: lowercase; } --> </style> </head> <body class="unnamed1"> text </body> </html> |
lots of good solutions in here....
|
thanks guys!
|
Microsoft word: Format - > change case
|
All times are GMT -7. The time now is 10:09 AM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123