Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

129
votes
13answers
57k views

Capitalize the first letter of string in JavaScript

I want to capitalize the first character of a string, but not change the case of any of the other letters. For example: this is a test -> This is a test the Eiffel Tower -> The Eiffel Tower ...
5
votes
3answers
151 views

How to capitalize each word even after hyphens with Jquery?

I want to capitalize all words in an input (using keyup function) to format names entered. examples : john doe => John Doe JOHN DOE => John Doe tommy-lee => Tommy-Lee Currently, I use this code ...
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?
4
votes
2answers
265 views

Smarty “capitalize” modifier… always capitalizes “L”? … and “P”?

Quite simply: I'm using Smarty and the |capitalize modifier. It works fine, but when I pass any word with l in it, it capitalizes it, even if it's not at the beginning of the word. What why? EDIT: ...
3
votes
4answers
1k views

Ruby on Rails uncapitalize first letter

I'm running Rails 2.3.2. How do I convert "Cool" to "cool"? I know "Cool".downcase works, but is there a Ruby/Rails method that does the opposite of capitalize, i.e., uncapitalize or decapitalize?
2
votes
4answers
173 views

how to CaPiTaLiZe every other character in php?

I want to CaPiTaLiZe $string in php, don't ask why :D I made some research and found good answers here, they really helped me. But, in my case I want to start capitalizing every odd character ...
2
votes
1answer
126 views

Capitalize first letter in java script

I know this has been answered before, but I'm a newb and I can't get it to work in my situation. Basically, I have pages that call the URL and display part of them on the page. I am hoping to have ...
2
votes
3answers
76 views

need capitalize words with special chars in PHP

ucwords doesn't capitalize foreign chars like öüäõ so I need a solution, which will make "öösel" into "Öösel" Is there a simple way to do it with regexp or I have to check all the characters ...
2
votes
3answers
1k views

Regular expression for checking if capital letters are found consecutively in a string?

I want to know the regexp for the following case: The string should contain only alphabetic letters. It must start with a capital letter followed by small letter. Then it can be small letters or ...
2
votes
3answers
2k views

Automatically capitalize first letter of first word in a new sentence in LaTeX

I know one of LaTeX's bragging points is that it doesn't have this Microsoftish behavior. Nevertheless, it's sometimes useful. LaTeX already adds an extra space after you type a (non-backslashed) ...
2
votes
4answers
2k views

Capitalize / Capitalise first letter of every word in a string in Matlab?

What's the best way to capitalize / capitalise the first letter of every word in a string in Matlab? i.e. the rain in spain falls mainly on the plane to The Rain In Spain Falls Mainly On The Plane
2
votes
2answers
453 views

Sometimes capitalized column name will be converted to lower case in MySQL windows?

Like accountId -> accountid Has anyone met this kind of problem? It doesn't happen every day,though.
1
vote
4answers
102 views

Rails: Capitalize characters after certain string

Using: Rails 3.0.3. I have a string that could be seen as this one: <p>hello, how are you? oh, that's nice! i am glad you are fine. i am too.<br />i am glad to have met you.</p> ...
1
vote
2answers
202 views

select tag in Google Chrome shows lowercase options

In Google Chrome, I have a select tag with countries which render with lowercase first letters when viewed in the browser. In all other browsers, they have upper case letters. The option labels are ...
1
vote
2answers
138 views

using capitalize on a collection_select

If this has been answered before I cannot find it. I have the following: = f.collection_select :sex_id, @sexes, :id, :name and this in the controller: @sexes = Sex.all the sexes are all stored ...
1
vote
3answers
346 views

Remove all the whitespace after ',' and make first letter uppercase in CSV with PHP

I'm having a CSV like this. john,joy, anna, Lucy Bravo,boy I want to remove whitespace after ',' if it exist. And also make the first letter after ',' to be capital letter, if its not capital ...
1
vote
2answers
622 views

How do I echo text in capital letters?

I want to know how to capitalize in PHP
0
votes
3answers
23 views

Css capitalize won't affect in http-post

I noticed that when I capitalize with css text-transform:capitalize; and send this input with an http-post to another page, it won't affect the value for this form-element. Why ? Is there a ...
0
votes
3answers
80 views

Capitalize input text in Javascript

In a form, I have two buttons to transform text to uppercase and lowercase. I am using this function to transform input text to upper case: ...
0
votes
3answers
169 views

Python search HTML document for capital letters

So I have all these html documents that have strings of capital letter in various places in alt tags, title tage, link text...etc. <li><a title='BUY FOOD' ...
0
votes
3answers
519 views

Regex capitalize first letter every word, also after a special character like a dash

I use this #(\s|^)([a-z0-9-_]+)#i for capitalize every first letter every word, i want it also to capitalize the letter if it's after a special mark like a dash(-) Now it shows: This Is A Test ...
0
votes
2answers
186 views

Is there a JS equivalent to CSS' text-transform: capitalize?

I've got a hidden <section /> that is comprised of divs that contain content to be stuffed into a jQuery UI dialog. On document.ready I want to loop through those divs, take the id of each ...
0
votes
3answers
643 views

how to get dateformat to capitalize month and day

I have my strings like so in my strings.xml: <string name="day_format">EEEE</string> <string name="date_format">dd. MMMM</string> <string name="date_format_us">MMMM ...
0
votes
3answers
569 views

Why does entity framework pluralize and capitalize entity class names?

Why does entity framework pluralize all the class names and capitalize the first letters by default? What are the advantages of doing this ? Probably a stupid question...but just out of curiosity?
0
votes
0answers
658 views

How to insert capital letters to Mysql?

I want to insert capital letters like: "User One" I want to insert to Mysql as : User One But, apparently, mysql inserted as "user one". How do I insert the capital letters in mysql? I am using ...
0
votes
4answers
1k views

is there a string method to capitalize acronyms in python?

This is good: import string string.capwords("proper name") 'Proper Name' This is not so good: string.capwords("I.R.S") 'I.r.s' Is ...