1,398 questions
2 votes
1 answer
71 views
Equivalent of `supportedLocalesOf` for letter-case conversion (`toLocaleLowerCase`, `toLocaleUpperCase`)?
In JavaScript, you can introspect support for various internationalization functionality by use of static supportedLocalesOf methods of the various classes namespaced under Intl. For example: Intl....
1 vote
1 answer
35 views
Uppercase and other validations in TextField in LibGDX
In a TextField object in LibGDX I need to validate input characters to transform lowercase to uppercase, and avoid numbers and special chars. How can this be done? Thank you very much.
3 votes
1 answer
105 views
Comparing fields after using intrinsic functions in COBOL
I try to compare two fields in COBOL after using the intrinsic functions upper-case and trim. When I compare these two fiels without moving the result into new fields the compare says the fields are ...
-4 votes
1 answer
98 views
How to make Uppercase Month Names in Y axes of the Chart via vba?
Please run the following code. Public Sub Macro1() 'Delete all charts For i = ActiveSheet.Shapes.Count To 1 Step -1 If ActiveSheet.Shapes(i).Type = msoChart Then ...
-4 votes
4 answers
106 views
Convert one element in list to uppercase in Python [closed]
How to convert one element (let's say "banana" in a list to upper case, all the rest elements remain in their original case? my_list=["apple","banana","orange"] ...
-1 votes
2 answers
148 views
How to convert the phrase into sentence case, disregard the UPPERCASE words
I want to convert all the text to "Sentence case", but I need the UPPERCASE words to remain UPPERCASE. I would manually write it if the file wasn't ~50.000 rows. A string could start with ...
0 votes
1 answer
137 views
LiquiBase Postgres default-schema
I have this problem in my application.yaml and in my postgres database: in my database I have a schema called TRIAL in uppercase. When the application starts it does not find the schema and fails, as ...
1 vote
2 answers
122 views
How do I randomly upper-case words in an array in Powershell?
I currently have the following code in my script: $array1 = @("Car", "House", "Computer", "Phone") $array1 = $array1 | Get-Random -Count 2 Write-Host $array1 ...
0 votes
1 answer
83 views
ERROR: check constraint "to_uppercase" of relation "my_table" is violated by some row
I try to run following script: ALTER TABLE my_table ADD CONSTRAINT to_uppercase CHECK (upper(my_name) = my_name); but when I do I receive the error: ERROR: check constraint "to_uppercase&...
1 vote
1 answer
111 views
Notepad++ and regex: how to UPPERCASE only first letter in specific words with / find / replace [duplicate]
This is the given situation: INPUT TEXT jjj=Johann{enter}{enter} uuu=08:30{tab}18:00{tab} vvv=08:30{up}18:45{down}08:30{left}18:45{right}08:30{tab} OUTPUT TEXT (goal) jjj=Johann{Enter}...
0 votes
2 answers
338 views
URL is saved in uppercase in DB
I have the following problem: I have the URL to a picture 'HTTP://WWW.ROLANDSCHWAIGER.AT/DURCHBLICK.JPG' saved in my database. I think you see the problem here: The URL is in uppercase. Now I want to ...
0 votes
0 answers
110 views
Postgres PSQL on Windows do not connect (authentication failed) for a user with uppercases
I have a strange behavior with psql on Windows. Let's describe : on a Postgres server under linux, a user has been created (by error) with uppercases. The connection works on server command line, but ...
1 vote
2 answers
1k views
Flutter Make Textfield input become uppercase
Update(2023/12/05): I fixed it with setting keyboardType to TextInputType.visiblePassword Is any update for this question Flutter TextField value always uppercase & debounce ? I've already tried ...
3 votes
2 answers
361 views
How to convert uppercase/lowercase turkish letters to each other?
I made a function that converts upper case to lower case using C. #include <stdio.h> #include <stdlib.h> //İi Iı Ğğ Şş Çç Üü Öö char toUpLow(char letter) { if (letter >= 'A' &&...
-1 votes
1 answer
2k views
Issue with 'upper-case' module in Node.js: ERR_REQUIRE_ESM when using require()
I am facing a problem with the 'upper-case' module in my Node.js application. I'm trying to use the upper-case module to convert a string to uppercase, but I'm encountering an error related to ESM and ...