Uppercase characters are capital letters.

learn more… | top users | synonyms

0
votes
1answer
14 views

Java converting upper to lower sorting

I have a program that sorts lines in a text file and puts them in alphabetical order but it can't sort the first word because the first word's first letter is uppercase and that word has to have the ...
0
votes
1answer
25 views

What of the vbs or batch is the best way to convert content of a file in uppercase?

I need to convert all content of a file in uppercase. It's very simple to do that in VBScript set fso=createobject("scripting.filesystemobject") ...
1
vote
2answers
51 views

Converting a lowercase char in a char array to an uppercase char (java)

Hello I am trying to write a little segment of code that checks if each char in a char array is lower case or uppercase. Right now it uses the char's ASCII number to check. After it checks it should ...
4
votes
2answers
76 views

Determine if a string starts with an upper-case character in Perl

I need to make a subroutine in Perl which determines if a string starts with an upper-case character. What I have so far is the following: sub checkCase { if ($_[0] =~ /^[A-Z]/) { return ...
0
votes
3answers
26 views

Having trouble with my code involving rot-13 [closed]

I have to write a program that will essentially return a character that is 13 places forward or backward. It only works for characters in the alphabet and if it's lowercase, it stays lowercase and if ...
0
votes
2answers
57 views

Javascript/jQuery uppercase first letter of variable with accents

I have a form with some text inputs to insert First Name, Last Name of a person, but I want to change the first letter of each word to a Uppercase and I found this solution: // The textboxes with ...
0
votes
2answers
36 views

Is there a possibility OnChange doesnt shoot?

probably someone has a idea: We want to force the users to write in a textbox called txtShirtName just in Uppercase. To force this, we add this attribute: txtShirtName.Attributes["onchange"] = ...
0
votes
1answer
19 views

Why can't I use a specific collation in MySQL?

I have a table with the character set latin1 (checked by show variables like "character_set_database";) and a default collation of latin1_swedish_ci (checked by SHOW TABLE STATUS;). I'd like to run a ...
0
votes
1answer
35 views

How to check for uppercase letters in MySQL?

I want to check, if a string consits only of uppercase letters. I know that RLIKE/REGEXP are not case sensitive in MySQL. So I tried to use the :upper: character class: SELECT 'z' REGEXP ...
0
votes
1answer
25 views

psql uppercase backreferenced string in regexp_replace

I have a string, that was previously processed with initcap(), and I wanto to uppercase part of it. To be specific - I want to uppercase basic roman digits that might occur. To be even more specific ...
0
votes
5answers
83 views

Class name convention in java [closed]

What is the naming convention of classes in java, for example should all classes be in upper case like MYCLASS.java ? as some classes like com.sun.org.apache.bcel.internal.generic. ANEWARRAY. can be ...
-4
votes
2answers
40 views

Capitalize everything after _ using REGEX [closed]

I want to capitalise everything following a _ using regex. Example: from en_gb to en_GB Thanks!
3
votes
1answer
46 views

Difference between -D and -d environment variables in Java

I understood how environment variables works in Java, setting -DVariable and getting with System.getProperty("Variable"). But i've seen sometimes examples with "-d" variable using lowercase, and I ...
1
vote
3answers
34 views

Finding Uppercase Character then Adding Space

I bought a SQL World City/State database. In the state database it has the state names pushed together. Example: "NorthCarolina", or "SouthCarolina"... IS there a way in SQL to loop and find the ...
1
vote
3answers
62 views

User input accepted whether they input uppercase OR lowercase in C++

Absolute beginner here (FIRST POST) and I am just about finished an assignment where I have had to create a program that lets the user create employee wages slip and then displays them by searching by ...
1
vote
2answers
55 views

angularjs force uppercase in textbox

I've tried using the uppercase filter but it does not work. I've tried doing it two ways: <input type="text" ng-model="test" uppercase/> and <input type="text" ng-model="{{test | ...
1
vote
1answer
126 views

Capitalize first letter after period

I am using regex to capitalize first letter after . or ? or ! but I am not able to use Upper case, is there something I am missing? val reply = line.replaceAll("""([\.!?])\s+([a-z])""","""$1"""+" ...
0
votes
1answer
35 views

Odd behavior of UPPER in select

I am trying to do some string manipulated within a MySQL select and I seem to have some strange behavior from the UPPER function. I am trying to return the first letter of a word (delimited with ...
-1
votes
2answers
27 views

java controle upper and lowercase in 2 String

I want to check if every character in a string is the inverse of the other character in the second. By inverse I mean uppercase and lowercase. For example these strings: Ahh7h aHH7H The result ...
2
votes
1answer
39 views

Evaluating the First Character of a User Defined Variable is Uppercase

I have a template document that I want to convert to another file with a user defined name. The following is the code I have pieced together. rem @echo off setlocal enableDelayedExpansion cls ...
1
vote
5answers
93 views

Java - Convert lower to upper case without using toUppercase()

I'm trying to create a short program that would convert all letters that are uppercase to lowercase (from the command line input). The following compiles but does not give me the result I am ...
3
votes
2answers
84 views

Uppercase the first letter in data frame

Heres my data, > data Manufacturers Models 1 audi RS5 2 bmw M3 3 cadillac CTS-V 4 lexus ISF And I would want to ...
0
votes
1answer
32 views

Mobile JavaScript: “text-transform: uppercase;” isn't uppercase?

I have a text input field where the input must be all uppercase, so I use: text-transform: uppercase; on the input. I know try to validate that input with some regex: function isSteamID(input) { ...
2
votes
5answers
70 views

Change first word in a sentence to uppercase

I am looking to convert the first word of a sentence into uppercase but unsure how would I go about it. This is what I have so far: $o = ""; if((preg_match("/ibm/i", $m)) || ...
4
votes
3answers
78 views

In Android EditText, how to force writing uppercase

in my Android application I have different EditText where the user can enter information. But I need to force user to write in uppercase letters... Do you know a function to do that ? Thanks !
0
votes
0answers
13 views

java.utils.Preferences adds / before uppercase chars

I am encountering problems with using the standard library of Java for managing preferences in the registry (java.utls.Preferences). I found out, that it adds foreslashes before every uppercase char. ...
0
votes
5answers
75 views

How to extract all UPPER from a string? Python

#input my_string = 'abcdefgABCDEFGHIJKLMNOP' how would one extract all the UPPER from a string? #output my_upper = 'ABCDEFGHIJKLMNOP'
-3
votes
4answers
107 views

tolower() and toupper() aren't working [closed]

My code is here: char* kropecka(char* tab) { int a=0,b=0; char* zwr; zwr=(char*)malloc(30*sizeof(char)); for(a;strlen(tab);a++) { if(tab[a]!='.') { ...
0
votes
2answers
34 views

DictReader change keys to upper

I'm trying to resolve import issues in dictreader when fields aren't formatted as expected, forcing all fieldnames to uppercase (or lowercase) would resolve that. Here's the basic code I'm using, ...
0
votes
1answer
48 views

iOS NSString - Creating upper case based on locale

My iOS application has language selection option. Its a server based application that receives all the strings from server that are to be displayed in the app. In one of the view, i've to convert text ...
0
votes
3answers
78 views

Making a random string lower case

I need to create a string of three random capital letters and three random digits, and output the result, which I have done. Next I need to make this whole string lower case, output the result, then ...
0
votes
1answer
82 views

Turning numbers into uppercase numbers with NSAttributedString/NSString and UILabel

I'm using a font here that has different looks for uppercase and lowercase numbers. This works perfectly in text editors, and Adobe's tools (by settings labels to uppercase only), and I figured this ...
0
votes
1answer
222 views

Windows batch file read text file and convert all to uppercase

I just simply want to replace all the text in the text file convert to uppercase. For example of abc.txt [Before conversion] First Name, Last Name, Full Name Brad, Pitt, Brad Pitt [After ...
1
vote
2answers
72 views

Is there any benefits to use uppercase (or lowercase) letters with html5 tagnames?

I have searched and have read about this question. Some questions here: Uppercase or lowercase doctype? Should HTML meta charset be lowercase or uppercase? and elsewhere have discussed it partially ...
0
votes
1answer
64 views

Uppercase folder store yii always return index

I have create a Yii app. I store it in /testyii I had create and rewrite URL. Everthing is OK. But now, when i try to access by localhost/Testyii/about (uppercase letter T) It always return me to ...
1
vote
1answer
70 views

Upper case before insert a row

I need to insert all my data in uppercase. I'm using an Oracle database, and I wrote a trigger which could do the work. The problem is that I don't know whether the :NEW can be override. This is my ...
0
votes
1answer
44 views

How can i make substitutions of the same word in Perl on the same xml line?

I'm working on an XML Document, I need to open it and transform to uppercase some specific tag values on the same line. If I have the same word it only does the substitution for one of them although ...
1
vote
4answers
223 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 ...
0
votes
3answers
85 views

Mix DISTINCT and UPPER keywords together

I have this query on Oracle 10: SELECT DISTINCT NOME FROM ICT.UTENTE WHERE UPPER(nome) LIKE UPPER('MA%'); This works and get me something like: MARIA LUISA Mariano MARIO What I really would is ...
-1
votes
2answers
57 views

converting to uppercase in ascx.cs

I currently have the following code which transforms the first letter of the surname to uppercase; static string UppercaseFirst(string s) { if (string.IsNullOrEmpty(s)) { return ...
1
vote
3answers
42 views

How can I make all of my buttons in a form to make its text to uppercase/lowercase?

Is it possible to make all text of the buttons in my form uppercase/lowercase?
-4
votes
4answers
254 views

php upper and lowercase without built in function [closed]

Hey guys i want to convert a string from lowercase to uppercase and vice versa without using any built in functions strtoupper or strtolower in php, can anyone help me please. edit: I can use some ...
0
votes
1answer
131 views

toupper function

I am wondering how the toupper() function in C works. I am trying it out in the code below but I'm definitely doing something wrong. The code compiles, but the arguments passed into toupper() are not ...
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
4answers
951 views

how to convert Lower case letters to upper case letters & and upper case letters to lower case letters

Alternately display any text that is typed in the textbox // in either Capital or lowercase depending on the original // letter changed. For example: CoMpUtEr will convert to // ...
0
votes
1answer
57 views

How to Search and find Word ( No sensitivity to upper or lower character )

I write a code : string strSearch = textBox1.Text; XDocument xdoc; List<string> lstItemsForAdd; lstItemsForAdd = xdoc.Descendants("name") .Where(item => ...
0
votes
5answers
44 views

For string with lower then UPPER . Give position when UPPER starts . Python

If i have a string ex = 'aaatttgggatgaATG' and I want to find the index where the lowercase ends so in this case it would be indx_lower = 13 how would i get that value ? would I have to do a ...
1
vote
1answer
63 views

Flex Force Uppercase in ComboBox

I am trying to force uppercase in some ComboBox <s:ComboBox id="cbStocks" width="200" height="30" fontSize="16" dataProvider="{this.knownSymbols}" /> I tried the setStyle approach suggested ...
0
votes
1answer
180 views

AJAX MaskedEditExtender turn input letters into uppercase

Can anyone please tell me how to turn all input to uppercase in a textbox with MaskedEditExtender AJAX control? Thanks
-1
votes
1answer
69 views

Function to return true if two letters are either both upper or both lower case not working, c++ [closed]

#include <iostream> using namespace std; char myChar_1 = 'a'; char myChar_2 = 'b'; char checkChar(char myChar_1,char myChar_2){ if ((isupper(myChar_1) && isupper(myChar_2)) || ...

1 2 3 4 5 6