4
votes
11answers
5k 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 …
3
votes
4answers
1k 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 …
2
votes
1answer
42 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 …
2
votes
1answer
63 views
Sentence normalizer in php?
I'm running a site that allows users to make comments, and most of them are highly uneducated and cannot use proper punctuation, capitalization, and etc.
I'm looking for some sort of function that …
2
votes
1answer
111 views
Check if at least 75% of a string is UPPERCASE
Hi,
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 …
2
votes
8answers
331 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 …
2
votes
3answers
242 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
vote
3answers
41 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 …
1
vote
4answers
106 views
Does a capital Decimal use more memory as a lowercase decimal
I heard someone say that in C#, capital Decimal is using more memory than lower case decimal, because Decimal is resolved to the lowercase decimal and that requires memory.
Is that true?
1
vote
2answers
430 views
XSL/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 ?
1
vote
3answers
493 views
XSLT Stylesheet: Changing text to uppercase
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 uppercase. How is this possible?
1
vote
1answer
136 views
How do you convert character case in UNIX accurately? (assuming i18N)
I'm trying to get a feel for how to manipulate characters and character sets in UNIX accurately given the existance of differing locales - and doing so without requiring special tools outside of UNIX …
1
vote
2answers
2k views
XSLT 2.0, replace function: How to replace matched group with upper case?
Hello,
If have a following element in my XSL file:
<xsl:value-of select="replace(lower-case(@name), '_([a-z0-9])', '$1')" />
For example from 'get_polygene_lubricants' it makes …
1
vote
2answers
94 views
WinForms/WebForms controls’ default case musings
Why is WinForms default name for controls starts with lowercase, and why uppercase for WebForms? What's the likely rationale for this?
0
votes
1answer
88 views
Problem with upper-case and lower-case xpath functions in selenium IDE
Hi, I am trying to get a xpath query using the xpath function lower-case or uppper-case, but they seem to not work in selenium (where I test my xpath before I apply it).
Example that does NOT work:
…
