Case insensitive 'sed' and 'tr'? Programming Software Development by NonProgrammer … part. The part Im stuck with is making it case insensitive. 1. so that case doesnt matter to the trasformation; and 2. then… the changed word/letters keeping the same case pattern it had before it was transformed. Cheers in advance… Case-insensitive Username Changing Community Center Meta DaniWeb by Assembly Guy … the username is already taken. I understand that it's case insensitive so that someone can't call themself 'dani' (all lowercase… if you own the username already, you can change the case of it? As I write this, I'm convincing myself… Re: Case insensitive highlighting Programming Software Development by Narue … several options. Here are a few: [LIST] [*]Create your own case insensitive traits class and apply that to your strings. [*]Convert all… of your strings to one case before doing comparisons. [*]Forget about the string specific search member… Re: Case-insensitive Username Changing Community Center Meta DaniWeb by Ketsuekiame Can you change it to something that isn't your name and then back to your name? But yeah, I agree, a simple logic gate that checks if your old username matches your new username (at a case insensitive level) hopefully wouldn't stress the development resource too much :) Case insensitive highlighting Programming Software Development by bigbadowl … quite large documents. Problem is: 1. It needs to be case insensitive, ie: "dog" or "Dog" should match… Case Insensitive Search - XPATH Programming Software Development by Mapper99 I can't seem to get a case insensitive search to work using an XPATH query. This code works: $… case insensitive attribute name and value Programming Software Development by phoenix.zhp … "value". I know I can select element with case insensitive using translate function like "//*[translate(name(), 'abc','ABC')='ABC… Re: case insensitive search in AES encrypted column? Programming Databases by calibi.yau … binary (blob), my comparisons will automatically be case sensitive. Converting from binary to a case insensitive type should solve my problem... but it… What you opined about HTML either it is Case Sensitive or Case Insensitive? Digital Media by webguru_1 What you opined about HTML either it is Case Sensitive or Case Insensitive? Re: What you opined about HTML either it is Case Sensitive or Case Insensitive? Digital Media by pty HTML, as stated in the standard, is case-insensitive. XHTML, like all XML, is case sensitive. Strings: Case Insensitive strstr Programming Software Development by Dave Sinkula How might I write an implementation in C a case-insensitive version of the standard library function [inlinecode]strstr[/inlinecode]? Here's how I might. [url=http://www.daniweb.com/code/showsnippet.php?codeid=314]But I need it to be case-sensitive[/url]? Strings: Comparing, Case-Insensitive Programming Software Development by Dave Sinkula How might I write an implementation in C of a case-insensitive version of the standard library function [inlinecode]strcmp[/inlinecode]? Here'… Re: Case sensitive Programming Software Development by kplcjl … his answer doesn't solve the solution. His solution is case insensitive, the way you stated the problem makes it look like… you really wanted that, not one that is case sensitive which is the default behaviour. If you do want… Re: Ubuntu Desktop used as a local webserver for Dev - Case Filter Hardware and Software Linux and Unix by sknake …="http://keystoneit.wordpress.com/2007/02/19/making-apache-case-insensitive/"]Making apache case insensitive[/URL] Re: case sensitivity issue with password login Programming Web Development by pritaeas > you should never store passwords as plain text If you change the collation of the password column, you can set it to case sensitive. A collation ending in _ci is often default, meaning case insensitive. Magic Constants Case Sensitive or case In-sensitive ? Programming Web Development by UI … on in your script. [b]These special constants are [u]case-insensitive[/u] and are as follows[/b] −". __CLASS__ The class… contradiction to me. Firs they say case-insensitive. Then in their 2 examples they mention they are case-sensitive. What is going on… Re: Magic Constants Case Sensitive or case In-sensitive ? Programming Web Development by JamesCherrill I'm not a php user, but just reading what you posted... these constants have a name and value (which depends on the context). The name appears to be case-insensitive (ie LINE Line line are all valid), but the values follow case-sensitive rules as above. Maybe a php buff can confirm or correct that. Re: Magic Constants Case Sensitive or case In-sensitive ? Programming Web Development by UI … in magic quote names but their values being case insensitive. I didn't understand that and thought they were saying …at one place the values are case sensitive and on another place values are case in-sensitive. But I had a… How to run SQL script in case sensitive mode without changing the collation Programming Databases by Geek-Master Currently our database is set to case-insensitive so when I search for the word "Math" … script below which compares the same words but in different case: [CODE]declare @var1 varchar(4) declare @var2 varchar(4) set… to temporarily set the scope of that script to a case sensative collation for that particular script and not change the… Re: Oracle11g case sensitivity problem Programming Databases by urtrivedi I used to convert things in upper case while comparing strings in oracle [CODE]select * from test where upper(ID_PRIVILEGES) = upper('Admin');[/CODE] You may also follow this link [url]http://geekzspot.blogspot.com/2010/01/case-insensitive-oracle-database.html[/url] Oracle11g case sensitivity problem Programming Databases by divyakprabh Hi, Im using Oracle 11g, and i have a query like select * from test where ID_PRIVILEGES = 'ADMIN'; but in database ID_PRIVILEGES is stored as Admin, I want case insensitive search to be done. I cannot change my query as select * from test where ID_PRIVILEGES = 'Admin'; Can anyone please help. Re: Simple switch-case question Programming Software Development by Schol-R-LEA As an aside, if you are taking in case-insensitive user input as you are here, I would suggest using either `toupper()` or `tolower()` to set the case of the switch variable, thus avoiding the issue entirely. Re: PHP based website has link name Upper/Lower Case Issue Programming Web Development by blocblue Hi, A couple of options that I can think of are: 1. Disable case sensitivity on Apache. This [URL="http://keystoneit.wordpress.com/2007/02/19/making-apache-case-insensitive/"]article[/URL] might help. 2. Use mod rewrites to redirect requests for lowercase URLs to uppercase, etc. R. Re: Replacing strings that are not case sensitive Programming Software Development by Ancient Dragon … of the string, convert it to all upper (or lower) case. Then instead of using the Replace method you show, find…. or you could write your own function that will do case-insensitive search and replaces. Re: upper and lower case Programming Software Development by binoj_daniel … DB. If you want to be able to compare two case-insensitive strings and have the comparison be false when the two… strings are the same except for the case of the characters then you need to use the COLLATE… Re: dice game- but the problem is case sensitive for strcmp Programming Software Development by Unimportant For std::string, I'd do it this way: [CODE] // case insensitive string compare function int compare_string(const std::string & s1, … Re: dice game- but the problem is case sensitive for strcmp Programming Software Development by burcin erek …]For std::string, I'd do it this way: [CODE] // case insensitive string compare function int compare_string(const std::string & s1… Re: How to set Case sensitivity in access database? Programming Software Development by Momerath … the exact same characters. The normal "=" does a case insensitive string compare. Re: Login Case Sensitive Issue Programming Web Development by Atli … database charsets. Some databases, like MySQL, use a case-insensitive collate by default. You can fix that in MySQL …by setting the default collate to a case-sensitive one: [i](Note that the 'cs' or … the end of collate names indicates whether they are case-sensitive or case-insensitive.)[/i] [code=text]mysql> CREATE TABLE `cotest… Re: Upper/Lower case problem Programming Software Development by Momerath … use Regex.Replace with the case insensitive option (and use Regex.Escape on the parameters, just in case). If you want to preserve… deal with situations where it's not possible to preserve case. For example: [I]black | white[/I] [B]Black[/B] …would become [B]White[/B] (case preserved) But what do you do when you have: [I…