Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
72 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 ...
UlrichH's user avatar
  • 23
-4 votes
1 answer
93 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 ...
Kram Kramer's user avatar
-3 votes
4 answers
88 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"] ...
Aliza Hashmi's user avatar
-1 votes
2 answers
122 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 ...
nigoo_'s user avatar
  • 23
0 votes
1 answer
74 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 ...
sgtgroove's user avatar
1 vote
2 answers
97 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 ...
Xeryn's user avatar
  • 11
0 votes
1 answer
69 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&...
gstackoverflow's user avatar
1 vote
1 answer
98 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}...
Johann Sterzik's user avatar
0 votes
2 answers
281 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 ...
Paskrone's user avatar
0 votes
0 answers
97 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 ...
Frank's user avatar
  • 1
1 vote
2 answers
862 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 ...
Jack Huang's user avatar
3 votes
2 answers
326 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' &&...
acura's user avatar
  • 35
-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 ...
Sri Murugan's user avatar
0 votes
3 answers
140 views

Make all the first letters uppercase except for words with at max 3 characters

I have a text file that the users can edit with many strings, I would like to have all the first letters uppercase except for words with <= 3 characters that must be all uppercase. using LINQPAD I ...
masha's user avatar
  • 21
0 votes
1 answer
114 views

Excel VBA advanced filter - uppercase

I'm using the following code to do first an advanced filter. Then I need to change the filtered range (except headers) to uppercase avoiding looping as it would slow things too much. But there is ...
José Angel Bernal's user avatar

15 30 50 per page
1
2 3 4 5
94