Hmm.. You must have a different version of Word than i do because i cant find any of that LOLOriginally Posted by gaystoryman
Can you hit me up on ICQ babe please
Regards,
Lee
Hmm.. You must have a different version of Word than i do because i cant find any of that LOLOriginally Posted by gaystoryman
Can you hit me up on ICQ babe please
Regards,
Lee
hi Lee,
you can take this
Create a file with this content and name it to some extension your server will process php files.
You will then see some output where every word is capitalized.PHP Code:<?php
$tmpArr = array();
$keywordFile = "kw.txt"; //name of the file with your words
$words = file ($keywordFile); //read file into an array
foreach ($words as $word) //loop on that array
{
$tmpArr[] = ucwords(trim($word)); //left&right trim non printable chars then capitalize each word. The $tmpArr grows dynamically
}
foreach ($tmpArr as $ucWord) //loop and output
{
echo $ucWord."\n";
}
?>
This was the input in my kw.txt
outputhello world
hello lee
hello all others on gWW
DEVELISHHello World
Hello Lee
Hello All Others On GWW
:-D
or, just take it to word, highlight everything then go to format and change case, there will be options there
Chris Baker
Gay Content Representative
AEBN
ICQ: 250268178
AIM: RavestormEKG
1-800-628-0241 ext 187
chrisb@aebn.net
How about making the text file into a HTML file and then using the text-transform: capitalize property in a style sheet
Code:<html> <head> <title></title> </head> <style> pre{ text-transform: capitalize; } </style> <body> <pre> amateur gay porn hardcore twink sex exclusive porn movies xxx rated adult sex </pre> </body> </html>
In the output, your list will be capitalized and you can just copy it to your clipboard.
Bookmarks