Skip to main content
2 votes
1 answer
71 views

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....
Lionel Rowe's user avatar
  • 6,258
1 vote
1 answer
35 views

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.
Patitud's user avatar
  • 13
3 votes
1 answer
105 views

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 ...
user30144283's user avatar
-4 votes
1 answer
98 views

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
-4 votes
4 answers
106 views

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
148 views

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
137 views

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
122 views

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
83 views

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
111 views

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
338 views

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
110 views

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
1k views

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
361 views

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

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

15 30 50 per page
1
2 3 4 5
94