case-sensitive Questions

4

Solved

I am using pathlib.glob() and pathlib.rglob() to matching files from a directory and its subdirectories, respectively. Target files both are both lower case .txt and upper case .TXT files. Accordin...
Forklift asked 14/3, 2022 at 15:53

2

i'm using GetElementsByTagName to extract an element from an xml. GetElementsByTagName is case sensitive - it throws an exception if the node name is 'PARAMS' instead of 'Params'. i dont want that ...
Cyanate asked 15/9, 2010 at 9:37

3

Solved

Is there a shortcut? Ctrl + S gives I-search:, and that is case-insensitive.
Montpellier asked 22/7, 2012 at 17:38

4

Solved

How do I make MySQL's SELECT DISTINCT case sensitive? create temporary table X (name varchar(50) NULL); insert into X values ('this'), ('This'); Now this query: select distinct(name) from X; ...
Diggs asked 19/10, 2013 at 5:59

3

Solved

Are MySQL primary key values case sensitive? If it's an option how do I set it? I want the table to be able to store "www.Example.com" and "www.example.com" as different values.
Tudela asked 28/3, 2013 at 16:18

11

Solved

In Python, I can compile a regular expression to be case-insensitive using re.compile: >>> s = 'TeSt' >>> casesensitive = re.compile('test') >>> ignorecase = re.compile(...
Steamroller asked 1/2, 2009 at 13:56

7

Solved

In SQLite it is possible to change the case sensitive behaviour of 'LIKE' by using the commands: PRAGMA case_sensitive_like=ON; PRAGMA case_sensitive_like=OFF; However in my situation I would li...
Lemures asked 18/3, 2013 at 15:18

6

Solved

Are table names in MySQL case sensitive? On my Windows development machine the code I have is able to query my tables which appear to be all lowercase. When I deploy to the test server in our data...
Remy asked 26/5, 2011 at 5:17

3

Solved

I have anum like this: export enum UserRole { USER, ADMIN, BLOGGER } and create.user.dto like this import { IsEmail, IsEnum, IsNotEmpty, IsOptional } from 'class-validator'; import { UserRole }...
Kentish asked 19/4, 2020 at 20:54

10

Solved

I'm using Hibernate for ORM of my Java app to an Oracle database (not that the database vendor matters, we may switch to another database one day), and I want to retrieve objects from the database ...
Spalding asked 23/9, 2008 at 12:14

22

I have changed a few files name by de-capitalize the first letter, as in Name.jpg to name.jpg. Git does not recognize this changes and I had to delete the files and upload them again. Is there a wa...
Magdala asked 16/7, 2013 at 17:41

3

Solved

I want to do a case sensitive search for a particular piece of code in a GitHub repository. Is it possible? I checked https://help.github.com/articles/searching-code/ and didn't find such a syntax...
Vizor asked 7/8, 2015 at 19:51

4

Solved

OK, so let's say I have this: $(function() { $('#good_evening').keyup(function () { switch($(this).val()) { case 'Test': // DO STUFF HERE break; } }); }); ... this would only run if you t...
Percutaneous asked 11/9, 2010 at 7:29

12

Solved

I am trying to rename a file to have different capitalization from what it had before: git mv src/collision/b2AABB.js src/collision/B2AABB.js fatal: destination exists, source=src/collision/b2AABB....
Suppurate asked 9/5, 2012 at 20:46

7

Solved

Routes in Ruby on Rails are case sensitive. It seems someone brought this up before, and it has been labeled will not fix. http://rails.lighthouseapp.com/projects/8994/tickets/393-routes-are-case-...
Tightfisted asked 18/2, 2010 at 20:18

1

The question is simple. How to do a case-insensitive searching with JMESPath? Let's say to search for foo in this JSON: [ "foo", "foobar", "barfoo", "bar&quot...
Syncytium asked 15/9, 2021 at 1:54

6

Solved

I have a List<String> of file names from a folder and a certain file name as String. I want to detect whether the file name is in the list, but need to respect the underlying file system's pr...
Erysipelas asked 17/8, 2009 at 13:58

8

Solved

Nearly every kind of lookup in Django has a case-insensitive version, EXCEPT in, it appears. This is a problem because sometimes I need to do a lookup where I am certain the case will be incorrect...
Erv asked 2/3, 2010 at 3:54

7

Solved

I have to check whether a file is present a particular path in Mac OS X. There is a file called foo.F90 inside the directory. But when I do if(os.path.exists(PATH_TO_foo.f90)), it returns true a...
Bust asked 15/7, 2011 at 16:53

2

Solved

Here is the code that works for lowercase and returns only "apple": df2 = df1['company_name'].str.contains("apple", na=False) I need this to find "apple", "APPLE...
Sniggle asked 25/6, 2018 at 15:14

5

Solved

I seem to be having an issue with a repository continually recreating branches locally because of some branches on remote. I'm on a Windows machine, so I suspect that it's a case sensitivity issue....
Allegiance asked 7/3, 2019 at 19:46

3

Solved

Short question Is XML case-sensitive? Longer question For example: <Shirt color="Red"/> The attribute color is of type string that may contain a set of valid colors (Red, Blue and ...
Breger asked 14/9, 2011 at 10:25

0

I'm using utf8mb4_bin for title column so i expected it's fulltext case-sensitive search. But actually the query return empty. CREATE TABLE `test_table` ( `id` int NOT NULL AUTO_INCREMENT, `title` ...
Reconstructionism asked 26/5, 2022 at 8:3

1

I was moving a project from windows machine to linux machine and I noticed that names of the tables created by Sequelize migrations are named differently between machines. When created by following...
Agneta asked 4/5, 2015 at 11:50

9

I have researched a lot and what I understand to make database tables name sensitive, you have to set the variable lower_case_table_names=0. Im on osX. I did this change in my.cnf. After that, if I...
Muley asked 11/6, 2015 at 11:23

© 2022 - 2025 — McMap. All rights reserved.