Skip to main content

Questions tagged [case-sensitive]

An operation is case sensitive when uppercase and lowercase characters are treated differently.

case-sensitive
1 vote
3 answers
85 views

Case sensitive distinct count from one column based on cell values in another column in EXCEL

Can you please help me with finding the count of distinct (case sensitive) products sold (Column B) per store (Column C) as per below data? Product_sold column has data from B2: B10. Store column has ...
kjd513's user avatar
  • 11
1 vote
0 answers
19 views

Hibernate @ManyToOne case insensitive

We have two Oracle tables like this: TABLE_1 ------- CODE_TABLE_1 | LIBEL_TABLE_1 ----------------------------- code_table_1.1| libel_table_1.1 code_table_1.2| libel_table_1.2 code_table_1.3| ...
medkhelifi's user avatar
  • 1,111
0 votes
1 answer
26 views

Are PowerBASIC variables case-sensitive?

I'm working on porting some old code written in PowerBASIC and compiled by the PowerBASIC Console Compiler. I don't actually have access to a working PBCC myself, only some compiled artifacts to ...
Extradosages's user avatar
1 vote
2 answers
68 views

PHP - usort() With Partial Case Sensitivity

I have the following array items: [{ first_name: 'Rebecca' }, { first_name: 'amy' }, { first_name: 'Amy' }, { first_name: 'stacy' }] I want the array to be sorted alphabetically ...
Lloyd Banks's user avatar
  • 36.2k
0 votes
0 answers
35 views

Spring's XML based bean configuration for Object Mapper's Case Insensitive property

I am trying to accept case insensitive fields to my API running on JBoss Server. Currently I have a Spring Boot Project. But i have a sprintApplicationContext.xml that i have contextConfigured inside ...
Achutha K's user avatar
1 vote
1 answer
231 views

By default, Nextjs route is case sensitive. Is there any way we can make it case insensitive?

I am using app router here. The current URL I have is http://localhost:3000/SomeClientURL But the ask from client is if user enter http://localhost:3000/someclienturl it should work the same way. I ...
Nirmala 's user avatar
0 votes
1 answer
51 views

Why isn't case a problem when compiling this Java file?

If I write a Java class as follows: public class Test {} ...and save it in a file with the same class name, but different case, like this: test.java ...then why is it possible to compile it ...
yinyang2024's user avatar
0 votes
1 answer
191 views

In Apache Spark, why am I receiving an error that a column reference is ambiguous even though my column names are in different cases?

I'm receiving the following spark error / exception when grouping / aggregating in spark: pyspark.sql.utils.AnalysisException: Reference 'type' is ambiguous, could be: type, type. In my dataframe, the ...
beaudet's user avatar
  • 948
0 votes
1 answer
103 views

TRANSLATE() function case sensitivity and precedence issues

SELECT TRANSLATE('NEE', 'Ee', 'Ee') --NEE SELECT TRANSLATE('NEE', 'eE', 'eE') --Nee SELECT TRANSLATE('NÉE', 'Éé', 'Ee') --NEE SELECT TRANSLATE('NÉE', 'éÉ', 'eE') --NeE How do you prevent a match by a ...
Ludovic Aubert's user avatar
0 votes
0 answers
33 views

equals not working as expected when used for a single property [duplicate]

I let IntelliJ generate the override for and have tried to use equalsIgnoreCase but it doesn't seem to be working correctly, case is being ignored when adding the object to a Set. @Override public ...
brandNoob's user avatar
-3 votes
1 answer
100 views

program that is case sensetive to both upper and lower case letters

question is - Please write a program which asks the user which editor they are using. The program should keep on asking until the user types in Visual Studio Code.If the user types in Word or Notepad, ...
aditya Verma 's user avatar
2 votes
3 answers
101 views

Trouble with C Code for Case-Insensitive Substring Removal in a String

#include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> int erase_once(char *input_string, const char *substring, int case_sensitive) { size_t ...
eminbihh's user avatar
0 votes
3 answers
63 views

searching case-sensitive in txt-files

I have a php-script to search in my webspace-files. I can toggle (case) if I want to search case-sensitive. It function if I toggle case-sensitive. But when deselect this option I get no result if my ...
guterfreund's user avatar
2 votes
1 answer
117 views

Check whether a dictionary is case sensitive

I would like to check whether a given dictionary ($Dictionary -is [System.Collections.IDictionary]) is case sensitive? For a [HashTable], it is described here: Distinguish different kinds of ...
iRon's user avatar
  • 22.4k
1 vote
0 answers
115 views

Case Sensitivity Issue in stauth.Authenticate Class - Keys Converted to Lowercase

Using the stauth.Authenticate class in my Python(Streamlit) code is giving me trouble.The issue seems to be related to case sensitivity in dictionary keys. I have a set of user credentials retrieved ...
Abdul Awal Nadim's user avatar

15 30 50 per page
1
2 3 4 5
86