Questions tagged [lowercase]

Lowercase characters are letters in minuscule: a, b, c, …

Lowercase characters are letters in minuscule: a, b, c, …

In ASCII, they are the characters in the range [a-z]. But other characters (for instance accented characters like é, è, ê, à, î, ï, ù) are also considered lowercase.

The counterpart of is .


See also: Letter case on Wikipedia

1025 questions
33
votes
8 answers

How i can translate uppercase to lowercase letters in a rewrite rule in nginx web server?

I need to translate the address: www.example.com/TEST in ---> www.example.com/test
Peak
  • 331
  • 1
  • 3
  • 5
33
votes
3 answers

How to transform selected text to lowercase in PHPStorm?

There is Ctrl + Shift + U shortcut, but it toggles characters case while I need to make all of selected characters in lowercase.
MiSHuTka
  • 1,191
  • 1
  • 12
  • 20
33
votes
4 answers

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 search and replace multiple files. Right now I have…
user196692
30
votes
2 answers

Why does the standard C++ library use all lower case?

Just curious why the C++ standard library uses all lower case and underscores instead of camelCase or PascalCase naming convention. Personally, I find the latter much easier to deal with when typing out code, but is there some kind of legitimate…
CuriousGeorge
  • 7,120
  • 6
  • 42
  • 74
30
votes
2 answers

Using upper-case and lower-case xpath functions in selenium IDE

I am trying to get a xpath query using the xpath function lower-case or upper-case, but they seem to not work in selenium (where I test my xpath before I apply it). Example that does NOT work: //*[.=upper-case('some text')] I have no problem…
Aristotelis
  • 321
  • 1
  • 3
  • 4
28
votes
2 answers

R Convert list to lowercase

Var1 is a list: var1 <- list(c("Parts of a Day", "Time in Astronomy", "Star"), c("Tree Tall", "Pine Tree")) How to convert all the characters to lowercase? The desired answer is the following list: var1 <- list(c("parts of a day", "time in…
user6633625673888
  • 625
  • 2
  • 7
  • 17
28
votes
10 answers

Why should the first letter of a Java class be upper-cased?

Why should the first letter of a Java class be upper-cased? Is it not possible to run a program containing lower-cased class names? If it is possible, what's the difference?
SKADIN
  • 535
  • 1
  • 6
  • 14
27
votes
4 answers

Capitalize the first letter of each word in a filename with powershell

I want to change the names of some files automatically. With this code I change the lowercase letters to uppercase: get-childitem *.mp3 | foreach { if ($.Name -cne $.Name.ToUpper()) { ren $.FullName $.Name.ToUpper() } } But I only want the first…
Gilko
  • 2,280
  • 8
  • 36
  • 45
25
votes
4 answers

Does the attr() in jQuery force lowercase?

I'm trying to manipulate the svg 'viewBox' attribute which looks something like this: ... Using $("svg").attr("viewBox","..."); However, this creates a new attribute in the element called…
Ben Zuill-Smith
  • 3,504
  • 3
  • 25
  • 44
24
votes
7 answers

lower_case_table_names Settings in MySQL 8.0.12

I've just compiled the version MySQL 8.0.12 in a Ubuntu 16.0.4. After following the instructions in the website and making the following my.cnf…
asuka
  • 2,249
  • 3
  • 22
  • 25
24
votes
4 answers

Golang - ToUpper() on a single byte?

I have a []byte, b, and I want to select a single byte, b[pos] and change it too upper case (and then lower case) The bytes type has a method called ToUpper(). How can I use this for a single byte? Calling ToUpper on single Byte OneOfOne gave the…
Nevermore
  • 7,141
  • 5
  • 42
  • 64
23
votes
2 answers

python 2.7 lowercase

When I use .lower() in Python 2.7, string is not converted to lowercase for letters ŠČŽ. I read data from dictionary. I tried using str(tt["code"]).lower(), tt["code"].lower(). Any suggestions ?
Yebach
  • 1,661
  • 8
  • 31
  • 58
22
votes
9 answers

First Character of String Lowercase - C#

How can I make the first character of a string lowercase? For example: ConfigService And I need it to be like this: configService
nemo_87
  • 4,523
  • 16
  • 56
  • 102
21
votes
3 answers

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 with lower case letter are also sorted but are…
mixkat
  • 3,883
  • 10
  • 40
  • 58
21
votes
7 answers

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'
O.rka
  • 29,847
  • 68
  • 194
  • 309
1 2
3
68 69