Re: Fantastic word game Community Center Geeks' Lounge by ~s.o.s~ Insensitive men are better than scheming women...;) 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… Case insensitive highlighting Programming Software Development by bigbadowl … large documents. Problem is: 1. It needs to be case insensitive, ie: "dog" or "Dog" should match… Re: Case insensitive highlighting Programming Software Development by Narue … options. Here are a few: [LIST] [*]Create your own case insensitive traits class and apply that to your strings. [*]Convert all… Re: Case insensitive highlighting Programming Software Development by Narue … function. No, anywhere you use an object that uses the insensitive traits, you're stuck with it throughout the life of… 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… 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 … might I write an implementation in C of a case-insensitive version of the standard library function [inlinecode]strcmp[/inlinecode]? Here… Case-insensitive Username Changing Community Center Meta DaniWeb by Assembly Guy … username is already taken. I understand that it's case insensitive so that someone can't call themself 'dani' (all lowercase… 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 :) 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. Re: case insensitive search in AES encrypted column? Programming Databases by calibi.yau … automatically be case sensitive. Converting from binary to a case insensitive type should solve my problem... but it's still not… C program help Programming Software Development by Draculaboy1014 …whether two strings are the same // being case insensitive. // return 0, when there is NO …, when there is a difference between the two letters case insensitive. // // Parameters: // str1 = first string to compare. …, when there is a difference between the two letters case insensitive. // // Parameters: // letter1 = first character to compare. … "End Now" error when running C program Programming Software Development by Draculaboy1014 …whether two strings are the same // being case insensitive. // return 0, when there is NO …, when there is a difference between the two letters case insensitive. // // Parameters: // str1 = first string to compare. …, when there is a difference between the two letters case insensitive. // // Parameters: // letter1 = first character to compare. … Open In New Window Php Programming Web Development by gremlinuk … file listing using * unix/DOS wildcards (? and *). * This is case insensitive. This script, the current directory (.), the * description file and the… me! **/ $externalConfig = ""; /** * Filenames in description files are case insensitive. If a file in a * directory is called MyProgram.ZIP… Re: "End Now" error when running C program Programming Software Development by Draculaboy1014 … are in the dictionary.txt file. This should be case insensitive. In other words, if in input.txt you have the… looping to insert event types into schedule Programming Web Development by assgar …time block/duration------------------------**/ $time_interval = $d_time_interval /*Note:$interval must be (case-insensitive): 'day', 'week', 'month', or 'year'*/ //determine interval used if… be valid UNIX time integer values - $interval must be (case-insensitive): 'day', 'week', 'month', or 'year' - $frequency must … how how to write a C source code for a Login system? Programming Software Development by anu123d … program and not stored in the file. 2. A case insensitive comparison is to be done for usernames. 3. Should accept…. Please suggest me, that how can i perform the case insensitive comaprisons for usernames and case sensitive comparison for passwords Thanks… PHP echoing to the Screen Programming Web Development by davidjennings … contains "Release". The "i" means case-Insensitive if (preg_match("/Runtime/i", $html[$i])) { if(preg_match… contains "Release". The "i" means case-Insensitive if (preg_match("/Release/i", $html[$i])) { if(preg_match… Notification when no results does not work Programming Web Development by kristo5747 …, $output); //Sort the array using a case insensitive "natural order" algorithm. natcasesort($output);…;, $file)) { //Sort the array using a case insensitive "natural order" algorithm. natcasesort($file); echo… Re: Search,insert,swap,delete word from string Programming Software Development by deceptikon …But its case sensitive and i want to search case insensitive word. Can someone guide me plz? When you want a… character comparison that's case insensitive, you can convert both characters to either upper or …strcmp()) don't support any way of enabling a case insensitive comparison. But that's not currently relevant because you'… Uploading a file into parallel arrays - HELP! Programming Software Development by erinkay528 … designated text somewhere in the city field, in a case insensitive manner (upper or lower case should both work). You should… of records in the database. Hint: Making the search case insensitive adds some complexity to this assignment. Consider converting a copy… Magic Constants Case Sensitive or case In-sensitive ? Programming Web Development by UI … in your script. [b]These special constants are [u]case-insensitive[/u] and are as follows[/b] −". __CLASS__ The class…][/b]. Seems like contradiction to me. Firs they say case-insensitive. Then in their 2 examples they mention they are case… Re: how how to write a C source code for a Login system? Programming Software Development by Narue …'s easy to write a function that does a case insensitive comparison; it's just the same algorithm but with tolower… Re: how how to write a C source code for a Login system? Programming Software Development by Narue … not compile. It's easy to write your own case insensitive comparison though, so you might consider that as an alternative… 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 … sensitive in magic quote names but their values being case insensitive. I didn't understand that and thought they were saying… Simple Banned Words Filter Programming Web Development by himerus … filter out any bad words. [b]eregi_replace[/b] is case-insensitive, so it will take out the word, no matter the…