Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
10answers
5k views

Upper vs Lower Case

When doing case-insensitive comparisons, is it more efficient to convert the string to upper case or lower case? Does it even matter? It is suggested in this SO post that C# is more efficient with ...
16
votes
11answers
766 views

How to remove lowercase on a textbox?

I'm trying to remove the lower case letters on a TextBox.. For example, short alpha code representing the insurance (e.g., 'BCBS' for 'Blue Cross Blue Shield'): txtDesc.text = "Blue Cross Blue ...
14
votes
16answers
27k views

How can I force input to uppercase in an ASP.NET textbox?

I'm writing an ASP.NET application. I have a textbox on a webform, and I want to force whatever the user types to upper case. I'd like to do this on the front end. You should also note that there is a ...
13
votes
5answers
969 views

CSS: text-transform not working properly for Turkish characters

The implementations of the major browsers seem to have problems with text-transform: uppercase with Turkish characters. As far as I know (I'm not Turkish.) there are four different i characters: ı i I ...
12
votes
5answers
164 views

Naming convention for upper case abbreviations [closed]

Should a method that returns an XML stream be called public Stream getXmlStream(); or instead public Stream getXMLStream(); What's your opinion about that? What's considered best practice?
7
votes
3answers
821 views

Vim: how to make the text I've just typed uppercase?

Use case: I've just entered insert mode, and typed some text. Now I want to make it uppercase. It can be done via gUmotion. However, I can't find the motion over the text entered in the recent ...
7
votes
5answers
4k views

How do you set strings to uppercase / lowercase in Unicode?

This is mostly a theoretical question I'm just very curious about. (I'm not trying to do this by coding it myself or anything, I'm not reinventing wheels.) My question is how the uppercase/lowercase ...
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
3answers
191 views

Unicode characters having asymmetric upper/lower case. Why?

Why do the following three characters have not symmetric toLower, toUpper results /** * Written in the Scala programming language, typed into the Scala REPL. * Results commented accordingly. */ ...
5
votes
2answers
2k views

Use Java and RegEx to convert casing in a string

Problem: Turn "my testtext TARGETSTRING my testtext" into "my testtext targetstring my testtext" Perl supports the "\L"-operation which can be used in the replacement-string. The Pattern-Class does ...
5
votes
3answers
878 views

Turkish case conversion in JavaScript

I want to convert strings to lower or upper case in JavaScript in the locale I wanted. I think standard functions like toUpperCase() and toLocaleUpperCase() do not satisfy this need. toLocale ...
5
votes
4answers
11k views

XSLT Stylesheet: Changing text to upper case

I am using an XSLT stylesheet to create an Excel document from an XML file. One of the values that I am pulling in I want to display as upper case. How is this possible?
5
votes
9answers
938 views

Rule of thumb for capitalizing the letters in a programming language

I was wondering if anyone knew why some programming languages that I see most frequently spelled in all caps (like an acronym), are also commonly written in lower case. FORTRAN, LISP, and COBOL come ...
4
votes
3answers
72 views

Can CSS uppercase the text shown for the title atribute?

Let’s say we have: <a id="link" href="#" title="i am the title">link</a> Is there a way to use CSS to uppercase the "i am the title" text that will be shown on mouse hover by default? ...
4
votes
4answers
98 views

Make first letter uppercase and the rest lowercase in a string

All, I'm trying to insert a last name into a database. I'd like the first letter to be capitalized for the name and if they have use two last names then capitalize the first and second names. So for ...
4
votes
2answers
148 views

char to uppercase assignment segmentation fault

In an effort to learn more about the inner workings of c++ I decided to write my own string class. However I am stuck on the .toUpper() and .toLower() functions. Here is my code. Text& ...
4
votes
3answers
545 views

Python: How to check if a unicode string contains a cased character?

I'm doing a filter wherein I check if a unicode (utf-8 encoding) string contains no uppercase characters (in all languages). It's fine with me if the string doesn't contain any cased character at all. ...
4
votes
5answers
571 views

Regex divide with upper-case

I would like to replace strings like 'HDMWhoSomeThing' to 'HDM Who Some Thing' with regex. So I would like to extract words which starts with an upper-case letter or consist of upper-case letters ...
4
votes
1answer
3k views

How to replace uppercase letters to lowercase letters using regex in Eclipse?

I'd like to go through all of my source code files and replace every occurence of k_Xyyy with k_xyyy (switch the first letter after k_ from uppercase to lowercase). I'm using the eclipse dialog to ...
3
votes
3answers
208 views

count upper case letters in word using perl

I want to count upper case letters in word using perl. Can anyone help me with this For example: I need to know how many upper case characters the word "EeAEzzKUwUHZws" contains. Thanks
3
votes
6answers
2k views

Javascript - How to capitalize first letter of each word, like a 2-word city?

My JS woks well when the city has one word: cHIcaGO ==> Chicago But when it's san diego ==> San diego How do I make it become San Diego? function convert_case() { ...
3
votes
5answers
1k views

how to change the case of first letter of a string?

s = ['my', 'name'] I want to change the 1st letter of each element in to Upper Case. s = ['My', 'Name']
3
votes
3answers
196 views

What is the standard algorithm for converting unicode characters into lowercase?

I want to know the standard algorithm for converting unicode characters into lowercase as proposed by unicode.org. Also, do most programming languages follow this proposed standard?
3
votes
1answer
334 views

Check if at least 75% of a string is UPPERCASE

I'm writing bug tracking software in PHP, and today I saw this in another bug tracker: http://bugs.php.net/bug.php?id=12017 Now I want to add a feature in my software which will block titles where at ...
3
votes
3answers
849 views

Automatically capitalize all input in WPF

Is there a way to automatically capitalize all input thoughtout a WPF app?
2
votes
3answers
70 views

Why is this word displayed as uppercase in web page?

Check out this web page: http://www.premierleague.com/en-gb/clubs/profile.overview.html/tottenham Why is word "Lilywhites" displayed as uppercase in web page?
2
votes
5answers
105 views

Determining the case (upper/lower) of the first letter in a string

In a web application, how do I determine whether the first letter in a given string is upper- or lower-case using JavaScript?
2
votes
4answers
220 views

Permutate a String to upper and lower case

I have a string, "abc". How would a program look like (if possible, in Java) who permute the String? For example: abc ABC Abc aBc abC ABc abC AbC
2
votes
3answers
48 views

trying to get the word with starting upper case on first letter using mysql

I have Visit table Visit_Id Visit_Date values(09-09-2011) Visit_status values like (accepted , refused) member_Id ...
2
votes
4answers
73 views

What is POPULAR today when it comes to write SQL Queries: UPPER CASE or Lower Case? [closed]

What is POPULAR today when it comes to write SQL Queries: UPPER CASE or Lower Case? And for what specific reason? SELECT * FROM tMyTable Or Select * from tMytable
2
votes
1answer
523 views

Replace a Regex capture group with uppercase in Javascript

I'd like to know how to replace a capture group with its uppercase in JavaScript. Here's a simplified version of what I've tried so far that's not working: > a="foobar" 'foobar' > a.replace( ...
2
votes
1answer
131 views

to upper with char16_t array

Is there any way to do it nicely. When I try using boost to_upper i get std bad cast so I ended with something like while(str[i]!=u'\0') { str[i]=(char16_t)toupper((wchar_t)str[i]); i++; } ...
2
votes
2answers
658 views

How do you convert a string to uppercase in ant?

I am modifying a wxi file as part of a wix install and updating a guid. As part of the "pedantic" warning setting if a guid is in lowercase the wix build fails. How can I convert the guid to an ...
2
votes
4answers
134 views

Capatalize every other letter…

How would i capitalize every other letter in a string? I know how to convert to lower or upper or the first, etc but not sure how to go about every other. To be clear I've included examples. Also this ...
2
votes
3answers
215 views

Convert Strings to Uppercase in SQL Server

What is the TSQL function for converting strings into upper case in SQL Server?
2
votes
3answers
2k views

How to change all column name to UPPER CASE for all the tables in one database of MS SQL Server?

is there any sql statement used to change all column name to UPPER CASE for all tables in database? MS SQL Server. I got a sql to do that, but not sure whether it`s correct. run SQL below select ...
2
votes
4answers
252 views

C function to remove all uppercase characters

I need an efficient implementation of a function in C that would be given a char[] and it will remove all uppercase characters from it returning everything left. e.g. if given ...
2
votes
3answers
1k views

Android sort sqlite query results ignoring case

just wondering if theres a way of sorting the results of a query ignoring case. Cause at the moment fields starting with an upper case letter are sorted and put on top of the list and fields starting ...
2
votes
3answers
145 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
3answers
793 views

Convert string from lowercase to uppercase and removing special charaters from a string using C#

I am developing a login form with User ID. I want the user to create the userid in a specified format. I need a method using C# to convert all lowercase letters to uppercase. The userid will be in the ...
2
votes
2answers
1k views

changing CharSequence first letter to upper case in android

it may seem simple but it posses lots of bugs I tried this way: String s = gameList[0].toString(); s.replaceFirst(String.valueOf(s.charAt(0)),String.valueOf(Character.toUpperCase(s.charAt(0))) ); ...
2
votes
3answers
2k views

WPF ComboBox, force input to UpperCase

I have an editable WPF ComboBox with TextSearchEnabled. I need to force the user's text input to uppercase when they type to filter the ComboBox. I was thinking of modifying the textbox that is part ...
2
votes
2answers
2k views

Convert HTML tag to lowercase

I working on an intranet project for IE6 (i know...) and I need to output some HTML code from a div. I use $('#output').text($('#container').html()); But IE6 outputs all the code in uppercase: ...
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
5answers
561 views

What code should be written to accept Lower and Upper case choices?

I'm beginner to c++ and writing a program that accepts user choices and acts according to it...my only problem is when the user enters Uppercase choice...the program treats it as it's a wrong ...
2
votes
1answer
712 views

Latex listings-package format option for uppercase keywords

I use the listings package to insert source code. I would like to print all keywords uppercase in the output, regardless of the case in the input. The manual states that ...
2
votes
2answers
2k views

iPhone Force Textbox Input to Upper Case

How do I force characters input into a textbox on the iPhone to upper case?
2
votes
3answers
905 views

PHP uppercase to lowercase rewrite optimization?

I am using this PHP code to redirect any form of UPPERCASE in URI's to lowercase. There are three exceptions: if the URI includes either "adminpanel" or "search" there is no redirect, also if it ...
2
votes
3answers
2k views

XSLT/XPath : No upper-case function in MSXML 4.0?

I try to use upper-case() in an XPATH, my parser is MSXML 4.0, and I get : upper-case is not a valid XSLT or XPath function. Is it really not implemented ?
2
votes
3answers
937 views

Unicode lowercase characters?

I read up someplace, that there are characters other than A-Z that have a lowercase equivalent, in Unicode. Which could these be, and why would any other character need an upper and lower case?

1 2 3