Lowercase characters are letters in minuscule: a, b, c, …
0
votes
1answer
16 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
3answers
35 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 ...
1
vote
4answers
54 views
I need help understanding character manipulation
Question: I need to write a function,
int is_lower_101(char c),
that returns true if it's a lowercase and false otherwise. And I can't use the predefined tolower type functions. I also can't use ...
0
votes
3answers
41 views
Grails lower() in query not working
Let's say I have code like this:
def c = Account.createCriteria()
def results = c {
between("balance", 500, 1000)
eq("branch", "London")
or {
like("holderFirstName", "Fred%")
...
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
63 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 ...
0
votes
5answers
26 views
Remove sections of url to only keep file name
I want to remove everything in the URL and only keep the name of the file/image. The URL is a dynamic input/variable.
Code:
var str = "http://website.com/sudir/sudir/subdir/Image_01.jpg";
str = ...
-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 ...
-1
votes
1answer
12 views
SQL insert values lowercased and with underscores
I've got a database with a list of names, but these names contain spaces and are capitalised.
How do I copy the name in each row and put it it back in each row but in a different column (lets say ...
1
vote
5answers
95 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 ...
2
votes
3answers
24 views
Search Element for Case Insensitive String
Let's pretend I have these spans:
<span>c2alerts</span>
<span>C2alerts</span>
<span>c2Alerts</span>
<span>c2aLerts</span>
...
7
votes
3answers
174 views
Why does the towlower() function not convert the Я to a lower-case я?
The function towlower() doesn't seem to work in Visual Studio 2012. Here's an example:
#include <string>
#include <iostream>
#include <io.h>
#include <fcntl.h>
#include ...
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
115 views
Using regex to findall lowercase letters in string append to list. Python
I'm looking for a way to get the lowercase values out of a string that has both uppercase and potentially lowercase letters
here's an example
sequences = ...
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 ...
2
votes
1answer
55 views
Lower case an entire string in Racket
Is there a way to turn all of the characters in a string into lower case in Racket?
The only way I can think of is turning char-downcase but it won't work with strings
I am using the beginner ...
0
votes
0answers
139 views
lower_case_table_names=1 lower_case_file_system=1
Trying to set up Umbraco 6.0.3 with mysql 5.5 on Ubuntu 12.04 - running into case insensitive issue - need to set:
lower_case_table_names=1
lower_case_file_system=1
in my.cnf - done that, but no ...
0
votes
1answer
41 views
CakePHP 2 - Converting Userinputs to lowercase
I have written in CakePHP 2.3, for my project an user management. Everything works fine.
But now I would like to have a registration function in which the user can create themselves.
Even that's not ...
1
vote
2answers
73 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
2answers
104 views
Creating a lowercase constant of a particular type in Haskell
For example, how to define a lowercase constant "corn" of an already existing datatype [Vegetables]?
I have tried using
type corn = [Vegetables]
but it produced a "Malformed head of type and or ...
0
votes
1answer
88 views
How to turn query, which searches SOLR data, into lowercase?
My scheme.xlm looks like this:
<fieldType name="text" class="solr.TextField" positionIncrementGap="100">
<analyzer type="index">
<tokenizer ...
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?
0
votes
2answers
45 views
How can I adapt this sqlite query so that it excludes PRODNAMEs that start with a lowercase x?
SELECT t1.pgrpname, t1.pgrpval, t0.prodname
FROM tproduct t0 inner join lpropgr l0 on l0.prodsern=t0.prodsern
INNER JOIN tpgroups t1 on t1.pgrsern=l0.pgrsern
WHERE lower(t1.pgrpname) in ('brand', ...
-4
votes
4answers
255 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 ...
3
votes
4answers
188 views
Converting to text to lowercase in nodes and child nodes in xsl
Using xsl 2.0 I'm trying to convert all uppercase text to having only the first letter of text in each node upper-case. Their are a large number of possible child elements.
<text> text text ...
3
votes
3answers
128 views
python: lower() german umlauts
I have a problem with converting uppercase letters with umlauts to lowercase ones.
print("ÄÖÜAOU".lower())
The A, O and the U gets converted properly but the Ä,Ö and Ü stays uppercase. Any ideas?
...
1
vote
4answers
973 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
45 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
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)) || ...
0
votes
3answers
213 views
True or false: pure regex can convert uppercase to lowercase?
Is there a way to use perl-style regular expressions to match a character and replace it with it's upper/lower case equivalent without relying on another language (php, javascript, whatever)?
...
0
votes
1answer
113 views
XSLT 1.0 trying to convert node to lowercase to be compared with string
I have a param named $SearchRecipe which holds a string that i'm always passing a lowercase string to.
I have an XML file which i'm accessing using my xslt and example of some data from the xml file ...
0
votes
3answers
168 views
Converting to lowercase at end of statement?
Slight issue. (Not using toupper() and tolower() functions) I understand what converting to uppercase and lowercase using numerical values is but following my C++ book, why is the conversion at the ...
0
votes
1answer
326 views
Ansi C - Convert String to Lower Case String
I need to convert a char array to a lower case char array. I also want to convert some special characters like Ä to ä. But the "ASCII-Code" 196 isn't in the ASCII-128. How can I convert them to lower ...
0
votes
5answers
318 views
How does this array conversion work ( lowercase to uppercase using a string)?
I got the program to work as expected, but can anyone explain how it works?
#include <iostream>
using namespace std;
int main(void) {
int exit;
string name;
cin >> ...
-5
votes
2answers
180 views
Perl: How to convert letters to UpperCase without uc() function [closed]
I'm trying to write a script which will convert all letters from lowercase to uppercase without using the uc() function.
2
votes
1answer
390 views
how to batch convert file names to lowercase and also update their references in the corresponding files
Adobe Dreamweaver does this beautifully but only with single file name. In dreamweaver, as i select a file name in the right side 'local files' box, F2 and rename the file a dialog opens to confirm to ...
0
votes
2answers
88 views
Why SQL Server columns are always lower case?
I have been working for a while with SQL Server and I noticed that Microsoft always uses lower cases for all the standard columns (i.g. in the master db). Is there a good reason for following this in ...
-2
votes
3answers
251 views
lowercase to uppercase in C++ [closed]
note that I am not asking what are the methods to convert lowercase letters to UPPERCASE letters in C++ but instead, I want to know which of these two methods in the codes below (Upper1 and Upper2) ...
6
votes
3answers
281 views
PHP: Convert html-entity-encoded uppercase character to lowercase
How can I convert the upper-case html entity characters to their lowercase?
$str = "É"; //É
$res = strtolower( $str );
echo $res;
http://codepad.viper-7.com/Zf3RTe
-1
votes
2answers
273 views
Split string and add hyphen between words [duplicate]
Possible Duplicate:
Replace space with dash and make all letters lower case using javascript
I need to be able to split a string and add a hyphen between the words. Also, the characters ...
2
votes
4answers
136 views
x.lower() makes my string uniterable. why
I created a code in python to search a word in document . The documents are stored as dictionary with a 'url' as their key and the content as the value. I wanted to convert the text of the document to ...
0
votes
0answers
98 views
How to check whether the shift key is being held in C#?
I was writing a method which should handle lower/uppercase letters by receiving virtualcodes (as you know the virtualcode always returns a code and can not render uppercase or lowercase letters by ...
1
vote
2answers
169 views
PHP preg_match and regex: lowercaps only either with hyphens, numbers, or alphabets, and at least 6 characters?
I want to accept an input with lowercaps only either with hyphens, numbers, or alphabets, and at least 6 characters. But the regex below accepts Upper case as long as the input is longer than 6 ...
0
votes
4answers
185 views
Erlang upper case and lower case sort
the question about a comparison of the upper and lower case..how can i do that in my sort function.any idea?
Ex: Inputfile : " I am Happy! "
Outputfile:
Happy!
I
am
thats what's happen with my ...
1
vote
3answers
356 views
How to determine if a charater is uppercase or lowercase in postgresql?
I have failed to find any function like isupper or islower in postgresql.
What I actually need is to select all the records from a table, where one of the columns contains capitized (but not ...
0
votes
2answers
396 views
Lowercase to Uppercase and Uppercase to Lowercase in C
Does anyone would help me with this code ? The function needs to do like in topic is written. Is it ok ? What is more I need is to count the number of made changes. How to implement this one ?
int ...
0
votes
2answers
137 views
In ruby how do you tell if a string input is in uppercase or lowercase?
I am trying to write a program that when a single letter is inputted, if it's in uppercase, leave it in uppercase and return it, and if it's in lowercase, then convert to uppercase. How do I write ...
0
votes
1answer
344 views
URL Structure: Lower case VS Upper case
Just trigger in my mind when I was going through some websites were they having upper case and lower case combination in url something like http://www.domain.com/Home/Article
Now as I know we should ...





