Capitalize is writing a word with its first letter as a capital letter (upper-case letter) and the remaining letters in lower case.

learn more… | top users | synonyms

1
vote
1answer
64 views

scala function with repeated parameters

I see that it possible to uses the following syntax for method that take parameters of a repeated type: def capitalizeAll( args: String*) = { args.map { args => args.capitalize } } However I ...
0
votes
0answers
22 views

Apply php “dashesToCamelCase()” function to all css styled html text with in my various php files

Here is my PHP function: function dashesToCamelCase($string, $capitalizeFirstCharacter = false) { //$str = str_replace(' ', '', ucwords(str_replace('-', ' ', $string))); $string = ...
0
votes
4answers
51 views

SQL Simple Query (CAPS)

I am having some trouble figuring out how to select words that have the first letter capitalized and then the rest as uncap? Any help would be appreciated. I tried the following: SELECT * from ...
0
votes
4answers
50 views

Calling methods within methods to Titleize in Ruby

I am trying to create a titleizing method for a programming assignment, it capitalizes certain words and ignores others. It always capitalizes the first word. To this end, I made a method that finds ...
0
votes
5answers
56 views

Capitalizing text into a website title

I have a text coming from a sql db that is not capitalized. In my HTML, I usually apply CSS text-transform to capitalize the text, but now I face an issue: I want this text to be part of the title ...
1
vote
3answers
67 views

Python How to capitalize nth letter of a string

I tried this: Capitalize a string. Can anybody provide a simple script/snippet for guideline? Python documentation has capitalize() function which makes first letter capital. I want something like ...
1
vote
6answers
56 views

How to take a string and return the capitalized format of a word

int length = s.length(); if (length = 0){ return s; } else { return s.charAt(0).toUpperCase()+ s.substring(1); } I get two errors saying: if (length = 0){ ^^^^^^^^^^ Type mismatch: cannot ...
0
votes
3answers
49 views

Regex in PHP to find last upcase char from the Camel Case

I want to match in PHP the last capitalize (http://php.net/manual/en/function.ucfirst.php) character in the string. To add to the complication I want to ignore everything after a different string, ...
0
votes
3answers
106 views

Android Capitalize characters not working in phone

in my app, I want to allow the user to enter only upper case letters. So I used capitalize property. This is one part of code <EditText android:id="@+id/et5" android:layout_width="140dp" ...
1
vote
1answer
140 views

How to capitalize a word in a C++ string?

I have a std::string and wish for the first letter to be capitalized and the rest lower case. One way I could do this is: const std::string example("eXamPLe"); std::string capitalized = ...
0
votes
2answers
152 views

Programmatically switch keyboard from uppercase to lowercase

I would like to turn my user's keyboard from uppercase to lowercase to force typing in lower-case. How can I do this?
1
vote
4answers
213 views

Capitalize first letter only [duplicate]

All of our data in our database is entered in ALL CAPS. When I pull that information (ie First and Last Name), I would like it to say "John Smith" vs. "JOHN SMITH." I tried using ...
1
vote
2answers
86 views

Capitalise first letter in String (Android) [duplicate]

I'm having trouble converting the first letter to Capital in a String: rackingSystem.toLowerCase(); // has capitals in every word, so first convert all to lower case StringBuilder rackingSystemSb = ...
1
vote
3answers
52 views

Unencoded Ampersands and Capitalize

Gretings all, I'm wondering if anyone has noticed this inconsistency and has any idea how to fix it. Example: http://jsfiddle.net/p5G2N/ Premise: Severals words are joined by an unencoded ...
0
votes
0answers
24 views

Python: capitalize and others in greek? [duplicate]

Well, I was wondering if it's possible to do .capitalize(), .upper() etc. with strings in greek! If I do this: a = "Κάτι" print(a.capitalize()) It just prints Κάτι again without changing it! ...
0
votes
1answer
116 views

Issue with capitalize first letter of textbox

I am using the following code to capitalize the first letter entered into a textbox. Problem is when you tab to another textbox, then tab back and enter something, it will not erase what is there .. ...
0
votes
2answers
173 views

Capitalize first letter in textbox

I am using the following code to capitalize the first letter entered into a text box. This works fine at first, but if the entire box is deleted, after typing again it will not capitalize again. Can ...
0
votes
0answers
33 views

text-transform:capitalize is not working when the combination of number and apostrophe in chrome

My CSS code: .capitalize {text-transform:capitalize;} When i try to do a simple CSS capitalize for a string: abcde123's it will get the result : Abcde123'S ==> the "S" is capitalized!!! And this is ...
0
votes
3answers
84 views

.toUpperCase() Button to capitalize all text in a TextArea

What would I have to do in order to have a button present to click to convert all text in a textarea to capitalized letters? Not just the first letter, but every letter. Thanks much for your help
1
vote
2answers
76 views

Sed capitalize every word on specific lines

I have markdown files formated like chapter one Blah, blah, blah. chapter one-hundred-fifty-three And also files formatted like CHAPTER ONE Blah, blah, blah. CHAPTER ONE-HUNDRED-FIFTY-THREE In ...
0
votes
1answer
134 views

Javascript/jQuery Capitalize each word with array of exceptions and words with 3 or less characters

I have this code working: http://jsfiddle.net/Q2tFx/ $.fn.capitalize = function () { $.each(this, function () { var split = this.value.split(' '); for (var i = 0, len = split.length; i < ...
5
votes
5answers
149 views

Function that takes a nested list of strings and returns a new nested list with all strings capitalized?

This will capitalize them but only if there are no nested lists. t = ['this','that', ['other']] def capitalize_nested(t): res = [] for s in t: res.append(s.capitalize()) return ...
1
vote
1answer
63 views

How can I combine ucwords and str_replace if I'm replacing several words/characters?

This works to combine ucwords and str_replace if I only need to replace one character: echo str_replace('_', ' ', ucwords($cname)); This works to replace words/characters: $search_name = ...
0
votes
1answer
221 views

How to capitalize the first letter of cyrillic word

Next problem: >>> a = "привет" >>> a.title() '\xd0\xbf\xd1\x80\xd0\xb8\xd0\xb2\xd0\xb5\xd1\x82' >>> print(a.title()) привет >>> from string import capwords ...
3
votes
3answers
5k views

python capitalize first letter only

I am aware .capitalize() capitalizes the first letter of a string but what if the first character is a integer? this 1bob 5sandy to this 1Bob 5Sandy
6
votes
3answers
957 views

How to capitalize first line with css?

Right now I've got a paragraph and I'd like to capitalize the entire first line. I've set the first paragraph to an id "firstp" and tried: #firstp:first-line { text-transform: uppercase; } I've ...
1
vote
3answers
166 views

Capitalise Each Word of what is contained within an input field

I've looked for an hour on Stackoverflow and had no luck unfortunately as I can't apply it to my circumstances. I'm not a coder, so please kindly tailor your response to my code. Upon our e-commerce ...
3
votes
1answer
928 views

Javascript: input box - autocapitalize first letter but can override

I have a name input box. I would like to auto-capitalise the first letter of the name as the user types, but allow the user to override the change for names such as "de Salis". I see here that this ...
5
votes
6answers
160 views

Capitalize words in title page until hyphen

This is the title of my page: <title>john smith - Site and site - jobs</title> I have to capitalize the title of the page until the first hifen (-). This is my code, but lost the second ...
0
votes
4answers
171 views

Capitalize first letter in <em>

$item = 'some <html> goes <div class="here"> and </div> can be placed <em> some words</em>, and then more </html> can exist'; How do I capitalize the first ...
1
vote
1answer
174 views

Capitalize selected text in textarea

I fail to capitalize selected text in textareas via onClick. After hours of googling I fopund out there is no built in method to get the select text in texareas. I found Replacing selected text in ...
0
votes
2answers
207 views

Capitalize a single 'char'acter in C#?

Is there a "simple" way to capitalize a single char-typed value? This will work, but feels cumbersome and generally wrong: var ch = 'a'; var cap = ("" + ch).ToUpper()[0]; cap.Dump(); // (in LINQPad) ...
0
votes
1answer
121 views

Capitalize one word in a dynamic meta title

Is there a way to capitalize one word in a dynamic meta title? Basically im using a slug in the meta title, but it is lowercase. I would like to capitalize just that one word, however im not sure ...
0
votes
2answers
323 views

How to capitalize first letter of each sentence AND give User the chance to change the letter to lower?

I implemented a capitalize after interpunctation. BUT how to implement it, that the user can go BACK and delete the first word or character because he wants to continue in lower-case? KeyPress(object ...
0
votes
1answer
69 views

Ucfirst Returing Incorrect Result

In my code i have a string and i want to capitalize first letter of each word using php function. This is my code: $str = "144 beach st,daytona beach,FL,32114"; echo ucfirst($str); It displays the ...
1
vote
8answers
278 views

Capitalize the first word outputted from MySQL only

I am looking to capitalize every letter of the first word that is presented by MySQL and PHP and keep the rest of the words lowercase. How could that be accomplished? It is stored in the database ...
-3
votes
1answer
234 views

Javascript capitalize first letter of a word when the word is double clicked [closed]

I would like a JavaScript that can capitalize the first letter of any word in a text area or input area. Example: A user types words in a text area. 'hello my name is mike. Its a great Day today' ...
-1
votes
1answer
163 views

Completely Capitalize Text in an Input [duplicate]

Possible Duplicate: How to change the input to uppercase as it is being typed Is it possible to completely capitalize text of an input with JavaScript. So basically as the user is typing ...
5
votes
5answers
3k views

JavaScript Code to Capitalize Text Inputs

I'm using the popular Firefox extension Greasemonkey. I'd like to know if there was a way to capitalize all text inputs in a certain form, so if I would use jQuery the code would look something like: ...
-1
votes
2answers
181 views

Capitalization using PHP

I am having trouble with the capitalization of names using PHP. There are some names that have 2 capital letters in them (ex: McCall). When storing a users name that registers for our website, we run ...
2
votes
5answers
2k views

Android EditText Capital Characters

I have an edittext and I want any character that I type in edittext show in Capital letter. I have used this: edittext.setInputType(InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS); But it is not ...
1
vote
3answers
2k views

python capitalize() on a string starting with space

I was using the capitalize method on some strings in Python and one of strings starts with a space: phrase = ' Lexical Semantics' phrase.capitalize() returns ' lexical semantics' all in lower case. ...
0
votes
3answers
135 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
377 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: ...
6
votes
3answers
744 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 ...
2
votes
4answers
381 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> ...
3
votes
4answers
821 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 ...
3
votes
2answers
802 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 ...
0
votes
3answers
390 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' ...
2
votes
1answer
322 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 ...

1 2