0
votes
5answers
1k views
How to set Sqlite3 to be case insensitive when string comparing?
I want to select records from sqlite3 database by string matching. But if I use '=' in the where clause, I found that sqlite3 is case sensitive. Can anyone tell me how to use strin …
1
vote
5answers
91 views
.NET How to compare two Strings that represent filenames ignoring case correctly
Given that (at least on NTFS) the filesystem on Windows is case insensitive, I would like to compare String fileA to String fileB as such:
fileA.Equals(fileB, StringComparison.Cur …
0
votes
2answers
41 views
Is it possible for lxml to work in a case-insensitive manner?
I'm trying to scrape META keywords and description tags from arbitrary websites. I obviusly have no control over said website, so have to take what I'm given. They have a variety o …
0
votes
3answers
29 views
Case Insensitive comparision of strings in Shell script
The == is used to compare two string in shell script, however I want to compare two strings by ignoring case, how it can be done.Do we any standard command for this.
0
votes
2answers
30 views
php/mysql: how to search case insentitively
hello,
i have this table in UTF8 (collation is utf8_bin in case it matters).
I need to search in it for strings using LIKE '%$searchstring%' .
Right now you have to use the ex …
0
votes
1answer
91 views
Linq to SQL case sensitivity causing problems
I've seen this question, but that's asking for case-insensitive comparisons when the database is case-sensitive. I'm having a problem with the exact opposite.
I'm using SQL Server …
0
votes
4answers
85 views
Case insensitive search in Unicode in C++ on Windows
I asked a similar question yesterday, but recognize that i need to rephase it in a different way.
In short:
In C++ on Windows, how do I do a case-insensitive search for a string ( …
3
votes
4answers
363 views
Entity Framework and associations between string keys
Hi,
I am new to Entity Framework, and ORM's for that mather.
In the project that I'm involed in we have a legacy database,
with all its keys as strings, case-insensitive.
We are …
1
vote
1answer
182 views
Accent and case insensitive collation in Oracle with LIKE
Hi,
I have found this answer useful:
Accent and case insensitive COLLATE equivalent in Oracle, but my question is regarding LIKE searching with a version 9 Oracle db.
I have trie …
0
votes
2answers
107 views
Using C# to SELECT against Excel, how do I make it case-INsensitive?
This SELECT finds Kelly as expected:
select [First Name], [Last Name], Phone from [Data$] where [First Name] like "%Kelly%"
In the Excel spreadsheet, the first name is "Kelly" wi …
0
votes
5answers
272 views
Problem validating asp:UploadFile file names with RegularExpressionValidator
I have in the settings file a row of all the file types I want to allow:
jpeg|jpg|tiff|tif|png|gif|bmp|eps|wmf|emf|pdf|doc|docx|zip|rar|ppt|pptx|mdb|xls
I want to have next to t …
4
votes
8answers
177 views
May I safely treat email addresses lower case?
In theory emails are case sensitive. But using emails as system login I want them to be all lower case (i.e. john@smith.com and John@smith.com cannot be different users).
Can this …
0
votes
2answers
141 views
LINQ to DataSet case insensitive group by
I have a data table and I want to perform a case insensitive group by over a column of data table (say Column1 of type string). I observed that normally LINQ to DataSet perform cas …
3
votes
2answers
85 views
How to recover from git-svn putting a different cased dulplicate file in the repository?
Git-svn allowed for a duplicate filename, just with different case, to be added to our subversion repository.
On Windows this meant that subversion could not checkout the file, co …
3
votes
8answers
3k views
How do I do a case insensitive string comparison in Python?
What's the best way to do case insensitive string comparison in Python?
I would like to encapsulate comparison of a regular strings to a repository string using in a very simple a …
