Tagged Questions
The title-case tag has no wiki summary.
9
votes
15answers
5k views
7
votes
3answers
232 views
RegEx to split camelCase or TitleCase (advanced)
I found a brilliant RegEx to extract the part of a camelCase or TitleCase expression.
(?<!^)(?=[A-Z])
It works as expected:
value -> value
camelValue -> camel / Value
TitleValue -> Title / ...
5
votes
6answers
5k views
Is there a simple way to convert MySQL data into Title Case?
I have a MySQL table where all the data in one column was entered in UPPERCASE, but I need to convert in to Title Case, with recognition of "small words" akin to the Daring Fireball Title Case script.
...
5
votes
8answers
13k views
How can I capitalize the first letter of each word in a string in Perl?
What is the easiest way to capitalize the first letter in each word of a string?
1
vote
2answers
290 views
Make the first letter of user input a capital in a batch script
This is the batch script I use to make the folders for a new client:
@ECHO OFF
SET /p clientLast=Enter Client's Last Name:
SET /p clientFirst=Enter Client's First Name:
ECHO Making Folders...
...
1
vote
2answers
296 views
TitleCase In Visual C++
I'm currently trying to find an easy way to convert a Visual (Managed) C++ string to title case.
In VB.NET, you can use either:
StrConv(sampleString, vbProperCase)
or
sampleString = ...
0
votes
5answers
753 views
Python Titlecase a String with exceptions
Is there a standard way in Python to titlecase a string (i.e. words start with uppercase characters, all remaining cased characters have lowercase) but leaving articles and like lowercased?
0
votes
3answers
751 views
In Java how do you Title Case a String while preserving some common abbreviations
There are many ways to Title Case in java.
But how do you prevent some of the common abbreviations from being converted. For Example;
System.out.println(makeProper("JAMES A SWEET");
...