GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   is there a way to make a text file that is all caps into lowercase (https://gfy.com/showthread.php?t=709553)

BlackCrayon 02-25-2007 07:39 PM

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

jimthefiend 02-25-2007 07:42 PM

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

SmokeyTheBear 02-25-2007 07:46 PM

<?php
$text = file_get_contents("file.txt");
$text = strtolower($text);
echo $text;
?>

micker 02-25-2007 07:49 PM

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.

MetaMan 02-25-2007 07:50 PM

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

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

micker 02-25-2007 07:52 PM

lots of good solutions in here....

BlackCrayon 02-25-2007 07:53 PM

thanks guys!

donkevlar 02-25-2007 08:17 PM

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