Changing Filename Case with TortoiseSVN on Windows

Use Rename option in Tortoise SVN from popup menu. See details here (“Moving files and folders” chapter). When you changed the case of several file names, in other words you changed file names – they have become out of version control – that’s why SVN client noticed that files that was under version control had … Read more

Are character set names case-sensitive in HTTP?

[Here is the result of my research.] RFC 2616 clause 3.4 says the following: HTTP character sets are identified by case-insensitive tokens. The complete set of tokens is defined by the IANA Character Set registry [19]. charset = token The IANA Character Set registry is now maintained here. At the very top of this document … Read more

In VBA get rid of the case sensitivity when comparing words?

There is a statement you can issue at the module level: Option Compare Text This makes all “text comparisons” case insensitive. This means the following code will show the message “this is true”: Option Compare Text Sub testCase() If “UPPERcase” = “upperCASE” Then MsgBox “this is true: option Compare Text has been set!” End If … Read more

How to compare character ignoring case in primitive types

The Character class of Java API has various functions you can use. You can convert your char to lowercase at both sides: Character.toLowerCase(name1.charAt(i)) == Character.toLowerCase(name2.charAt(j)) There are also a methods you can use to verify if the letter is uppercase or lowercase: Character.isUpperCase(‘P’) Character.isLowerCase(‘P’)

tech