Tagged Questions
The capitalization tag has no wiki summary.
12
votes
6answers
4k views
Correct Bash and shell script variable capitalization
I run across many shell scripts with variables in all caps, and I've always thought that there is a severe misunderstanding with that. My understanding is that, by convention (and perhaps by ...
11
votes
7answers
15k views
Capitalize First Char of Each Word in a String Java
Is there a function built into Java that capitalizes the first character of each word in a String, and does not affect the others?
Examples:
jon skeet -> Jon Skeet
miles o'Brien -> Miles O'Brien (B ...
8
votes
1answer
1k views
Is there a way to style a TextView to uppercase all of it's letters?
I would like to be able to assign a xml attribute or style to a TextView that will make whatever text it has in ALL CAPITAL LETTERS.
The attributes android:inputType="textCapCharacters" and ...
8
votes
5answers
6k views
Capitalize only first character of string and leave others alone? (Rails)
I'm trying to get Rails to capitalize the first character of a string, and leave all the others the way they are. I'm running into a problem where "i'm from New York" gets turned into "I'm from new ...
7
votes
6answers
392 views
Capitalization of Person names in programming
Is anyone aware of some code/rules on how to capitalize the names of people correctly?
John Smith
Johan van Rensburg
Derrick von Gogh
Ruby de La Fuente
Peter Maclaurin
Garry McDonald
(these may ...
6
votes
2answers
212 views
How should I capitalize Ruby? [closed]
RUBY? Ruby? ruby? What's good style?
I know the answer—I just wanted to make sure the question was out there and questioners were aware that there is a correct form.
Also, should I capitalize "gem" ...
6
votes
10answers
2k views
How should I capitalize Perl? [closed]
PERL? Perl? perl? What's good style?
I know the answer—I just wanted to make sure the question was out there and questioners were aware that there is a correct form.
5
votes
6answers
1k views
Using a regular expression to replace upper case repeated letters in python with a single lowercase letter
I am trying to replace any instances of uppercase letters that repeat themselves twice in a string with a single instance of that letter in a lower case. I am using the following regular expression ...
5
votes
3answers
4k views
How to capitalize the first word of the sentence in Objective-C?
I've already found how to capitalize all words of the sentence, but not the first word only.
NSString *txt =@"hi my friends!"
[txt capitalizedString];
I don't want to change to lower case and ...
5
votes
3answers
336 views
Capitalizing texts in user interface
I'd like to ask you if there is a reason to capitalize all items in menus, etc in application user interface, for example
File->Page Setup
Edit->Select All
Help->Technical Support
Why shouldn't ...
5
votes
5answers
12k views
With jQuery, how do I capitalize the first letter of a text field while the user is still editing that field?
I'm looking for an example of how to capitalize the first letter of a string being entered into a text field. Normally, this is done on the entire field with a function, regex, OnBlur, OnChange, etc. ...
4
votes
4answers
174 views
Capitalize last letter of a string
How can I capitalize only the last letter of a string.
For example:
hello
becomes:
hellO
4
votes
8answers
388 views
C# Capitalizing words in a string
I need to take a string, and capitalize words in it. Certain words ("in", "at", etc.), are not capitalized and are changed to lower case if encountered. The first word should always be capitalized. ...
4
votes
2answers
3k views
SOLR - wildcard search with capital letter
I have a problem with SOLR searching. When i`am searching query: dog* everything is ok, but when query is Dog*(with first capital letter), i get no results. Any advice? My config:
<fieldType ...
3
votes
1answer
49 views
Chrome makes multiple request for same asset if capitalization differs
I'm working on a large asp.net web project that has had a number of different developers/consultants making changes to it over the last few years. I've noticed that depending on the developer, paths ...
3
votes
2answers
100 views
Zend Framework: Set a validator for starting letter as Capital
For my school project, I try to make a form in Zend.
I would like to insert a Validator that the first letter has to be a Capital letter.
What should I change in this piece of code to make this ...
3
votes
6answers
201 views
Apply drop caps to each word in a link
I'd like to recreate the menu effect seen at http://www.thedecoratorsource.co.uk using CSS fonts and drop caps.
I know that I can use
p.introduction:first-letter {
font-size : 300%;
}
which will ...
3
votes
5answers
324 views
Javascript: Capitalization of each Word in String
Greetings, I want to capitalize each word in a script, for this I have came up with a such method:
//Word Capitalization
function wordToUpper(val) {
newVal = '';
val = ...
3
votes
1answer
80 views
Moving Oracle data (and index) to SQL-Server - capitalization in data
I'm trying to move data from an Oracle (10g) database to SQL-Server (2008). I also want the indexes to be re-created on the SQL-Server side. However, in Oracle, there is a primary key defined on the ...
3
votes
6answers
238 views
How to set initial caps in VIM?
In VIM, it's really easy to change a word of text to use uppercase or lowercase:
# in visual mode
# change word to uppercase
gUw
# change word to lowercase
guw
Is there a simple way to modify the ...
3
votes
9answers
414 views
Capitalization Permutations
I wanted to write a snippet of ruby that would take a string and output all possible permutations of capitalizations. Basically, I have a password that I remember, but I don't remember how it is ...
3
votes
2answers
606 views
Capitalizing non-ASCII words in Python
How to capitalize words containing non-ASCII characters in Python? Is there a way to tune string's capitalize() method to do that?
2
votes
5answers
30 views
Did capitals ever matter in email addresses?
My dad says capitals used to matter (years ago) for email addresses but don't anymore. I'm fairly sure they never did because something like that involving DNS/MX changes would not change. Especially ...
2
votes
1answer
255 views
Regex pattern for capital letters and numbers only, with possible 'List'
Can anybody help me figure out the regex to match words that have this pattern:
Number or Capital in any order X 3 (+possible 'List' on the end)
So for example,
OP3
G6H
ZZAList
349
127List
are ...
2
votes
2answers
242 views
strtoupper PHP function for UTF-8 string
I've been reading user comments for the strtoupper() PHP function and there doesn't seem to a consensus on how to do the conversion for non-Enlgish strings. I mean people offer localized solutions and ...
2
votes
2answers
228 views
In a paragraph how to make every first letter of the word into Capital letter using PHP
I am having a paragraph and i want to make every first letter of the word into a capital letter using PHP.
ex:
converting every first letter into capital letter.
should convert into
Converting ...
2
votes
3answers
146 views
pseudo selector for uppercase chars/words?
Is there a CSS pseudoselector for uppercase characters/letters/words? I want all my capitals to be a pt smaller and all the other characters the same size. A capital is not neccesarily the first ...
2
votes
4answers
2k views
BASH - Make the first Letter Uppercase
I try to capitalize the first letter in a CSV which is sorted like this:
a23;asd23;sdg3
What i want is a output like this
a23;Asd23;Sdg3
So the first String should be as is, but the second ...
2
votes
3answers
2k views
How to make everything in a textfield be capital letters / uppercase?
I want to make everything I write in a textfield to be capital letters. As I write, not after losing focus.
How do I do this using jQuery?
2
votes
2answers
225 views
Capitalize Words in PHP with custom delimitor
Hey guys,
i need a method to capitalize every first letter of a word.
This is what i got so far and it is working for almost every string...but it fails on this one "WELLNESS & RENOMME".
// ...
2
votes
5answers
156 views
Need help with hard regex
I need a regex that checks if a string only contain letters(a-z) and that the first letter is uppercase, you cant have 2 letters in a word uppercase Like: THomas or THomAS but Thomas Anderson (Thomas ...
2
votes
2answers
332 views
Force all capitals in NSTextField (Cocoa)
Is there a way to force capitals in a NSTextField?
I want to create a text field for typing in Post Codes, and I want all post codes entered to use capital letters.
e.g. N1 3ET instead of: n1 3et
...
2
votes
2answers
168 views
Why does Perl's Text::Capitalize turn “Juvénal” into “JuvéNal”?
I'm using Text::Capitalize to try and title case some UTF-8 encoded names from a web page (downloaded using WWW::Mechanize, but I'm not getting the results I'm expecting.
For example, the name on web ...
2
votes
5answers
292 views
Why is capitalising class names in Java (and others) only a suggestion and not a rule?
I am wondering why Java, with its many safety features and constraints, allows developers to start a class name with a lowercase letter even though it would be an extremely stupid idea to do so.
Or ...
2
votes
5answers
2k views
Flex: Capitalize words in string?
I am trying to do the equivalent of PHP's ucwords() in Flex. I dont want the whole string in uppercase just the first letter of each word. Does anyone know a way?
Thanks!
1
vote
0answers
18 views
Initial CAP After Bullet in UITextView
I think this boils down to whether there is a way to set the shift key to selected state programmatically in a UITextView?
I provide users a key to insert a bullet "•" into the text view, and you ...
1
vote
5answers
81 views
Change the Font Style - (Set Lable text in All-Caps format ) in Objective C
I want to set the UILable text font style in Small-Caps format like below image.
Please give me the solution for this if anyone know,
Thanks.
:)
1
vote
2answers
68 views
Address Capitalization
I'm looking into using a CASS-Certified address validation service to correct user-provided street addresses at the time of entry. (Specifically, I'm looking at SmartyStreets' LiveAddress.) However, ...
1
vote
1answer
125 views
Using replace and regex to capitalize first letter of each word of a string in JavaScript
The following,though redundant, works perfectly :
'leap of, faith'.replace(/([^ \t]+)/g,"$1");
and prints "leap of, faith", but in the following :
'leap of, faith'.replace(/([^ ...
1
vote
3answers
185 views
Capitalization of all characters string in a double loop in Python
I have the following Python code, that cycles thru the string and capitalizes each character:
str = 'abcd'
l = list(str)
for i in range(len(l)):
rl = list(str)
cap_char = l[i].capitalize()
...
1
vote
2answers
94 views
Format text from “HELLO, WORLD. HOW ARE YOU?” to “Hello, world. How are you?” in ObjC(iOS)?
As the title said, I need to format a string of text in format like: "HELLO, WORLD. HOW ARE YOU?" into "Hello, world. How are you?", is there any standard method for doing this in iOS? Or is there ...
1
vote
3answers
126 views
Function to return only the capital letter(s!) at the beginning of a string?
I'm trying to retrieve the first couple of capital letters from a string in PHP, but I'm not sure if there's a specific function to do this. Should I perhaps resort to using regex? If so, how?
Here's ...
1
vote
1answer
153 views
Perl: How can I capitalize a regex match?
I am using this regular expression to find patterns in a genome.
$string =~ /(?i)a+t?|(?i)t+/g
To make the output easier to read I would like to modify it so it capitalizes anything it matches that ...
1
vote
2answers
67 views
Changing list of NAMES TYPED IN CAPITALS to Names Typed In Capitals with Java
Lets say I have file with sever hundred lines of text all in capital letters.
How should I go about changing the words on each line to lower case with only the first letter staying as capital?
TEXT ...
1
vote
2answers
145 views
Google App Engine using UserProperty to link data
I am writing an application in GAE. In order to link the currently logged in user to data in my application I have been relying on equality between users.get_current_user() and members.user (see ...
1
vote
2answers
615 views
Capitalize f.text_field
I have a form_for and I want that any value inside x.textField appear with the first letter in Upcase (I'm talking about the edit where the textfield are prefilled by the db values).
1
vote
6answers
188 views
Capitalization of strings
Let us imagine, that we have a simple abstract input form, whose aim is accepting some string, which could consist of any characters.
string = "mystical characters"
We need to process this string ...
1
vote
1answer
3k views
MySQL - Capitalize first letter of each word, in existing table
I have an existing table 'people_table', with a field full_name.
Many records have the 'full_name' field populated with incorrect casing. e.g. 'fred Jones' or 'fred jones' or 'Fred jones'.
I can ...
1
vote
5answers
258 views
Turn all titles in wordpress powered site into “Capitalized” case
So what i need is a query or some tip on how to turn all titles on a wordpress powered website into capitalized case.
What i have now is something like this:
AAAAA BBBBB CCCCC
I want it to be like ...
1
vote
1answer
132 views
Third-party titlecase method in Python
The standard string title() method in Python is pretty naive and doesn't correctly handle converting even fairly simple words and phrases to title case (hyphenated words, phrases with quotes, phrases ...