Questions tagged [case-sensitive]

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

1275 questions
-1
votes
1 answer

XML nodes rewritten to lowercase when using Content-Disposition:attachment

I have two web applications that perform the same task: generating an XML file. The XML nodes are mixed case and case sensitive. The apps run in different environments and can't be moved. I'm using Content-Disposition to send the XML string as a…
Trint
  • 19
  • 3
-1
votes
1 answer

Android SQLite case sensitive look-up

EDIT: I found the answer. Use "GLOB". What a weird word, no wonder I can't find anything. I am trying to use a cursor in Android to do a case sensitive lookup of my SQLite table. I have googled for it but all results are of people asking on how to…
Dobob
  • 337
  • 1
  • 3
  • 12
-1
votes
5 answers

Make the string case insensitive in java

I have a question in my app I have a String which contain a word for search, then I use this word to search from a long Text, I want that all words that contain the searched word to return (e.g. WoRd = word = WORD). Thanks. private static int…
Dan Paschevici
  • 961
  • 2
  • 10
  • 22
-1
votes
2 answers

Case sensitivity (Uppercase-Lowercase) check for password and confirm password fields in android eclipse

I'm doing a edit profile page and there, I need to check case sensitivity for password field and confirm password file. How can I implement this in android. Case sensitivity (Uppercase-Lowercase) check for password and confirm password fields in…
Adarsh
  • 89
  • 4
  • 14
-1
votes
2 answers

Case sensitivity in PHP DateTime arguments

I'm creating DateTime objects using createFromFormat() method. I can't find it specified if the strings for format argument are case sensitive, where it comes to non-numerical parts. My question is about that matter - are the string arguments for…
wiktus239
  • 1,404
  • 2
  • 13
  • 29
-1
votes
1 answer

Regular expression case sensitive

im trying to get this regular expression to work but im having problems with javascript exception because of the case sensitive. I have my regular expression in my model and some words should not be able to write such as "and" "or" "ok" "not. but if…
Cosy
  • 1
  • 3
-1
votes
1 answer

php Class name case sensitive

I declare a class like this in php
IT-Life
  • 33
  • 2
  • 5
-1
votes
3 answers

Disable the case sensitivity in Linux server

I have an app that shows some videos, some of them have capital letters extensions and the app requests the video as they have small letters extensions Is there any way to make ".mp4" equals ".MP4" ? so when the app looks for ".MP4" the video which…
Yahia
  • 191
  • 1
  • 11
-1
votes
1 answer

Case sensitive phrase search in Visual C++

I am trying to create a function that will act as a case-sensitive attribute of a phrase search. In the context of the program, a user will have a text document that they can then query a phrase search, and each instance of that phrase will be…
user2109706
  • 115
  • 1
  • 1
  • 11
-1
votes
1 answer

How do you convert inputted data to uppercase so that it is recognised by a while loop?

I am trying to create a program that allows the user to keep using the program as long as what they enter is YES or a form of yes. I have created the program and it works and continues to loop providing they enter YES in uppercase. I have tried to…
user2633836
  • 131
  • 3
  • 5
  • 13
-1
votes
1 answer

How to get ElasticSearch to return scores independent of case?

I would like ElasticSearch to return result scores that are independent of case. As an example, suppose I query for the string "HOUSE" or ("house") I obtain the following results: "House" => score: 0.6868894, "House on the hill" => score:…
user2704504
  • 133
  • 6
-1
votes
2 answers

Case sensitive urls in apache

Will any buddy help me to make my urls insensitive .. i want to make domain.com/url.ext is just like domain.com/Url.EXT Remember CheckSpelling on is not working
Adnan
  • 1,379
  • 2
  • 17
  • 24
-1
votes
3 answers

Managing user input's case in Python

I have set up a script to say something when the user enters something other than Yes. However it still says this when the user says Yes. What am I doing wrong? I am using Python 2.7.2. Here is my code: print 'Hi! Welcome!' begin = raw_input ('Will…
Ryan Werner
  • 177
  • 3
  • 5
  • 13
-2
votes
1 answer

Python 3.6 & MySQL 8.0.21 on MacOS: How to give table camelCase column names?

I have an API response that I would like to store in a MySQL table with column names that are identical to the names used in the response. In this case some of them are case sensitive, in particular camelCase. It seems MySQL is not accepting this.…
peter
  • 756
  • 5
  • 16
-2
votes
1 answer

Crawling case-sensitive URLs but Scraping case-insensitive with Scrapy

I am using Scrapy to crawl and scrape numerous websites. Scrapy needs to crawl the URLs in a case-sensitive mode as this is an important information when requesting a web page. Many websites link to some of the webpages using different casings of…
1 2 3
84
85