ZipGrep is a utility that can list and search zip (.war, .ear, .jar, etc) archives for text patterns, without the need to extract the archive's contents.
One of a set of tools we're offering as a way to say thank you for being a part of the community.
By default string compare are case sensitive unless it has been change to case insensitive. This is done by setting the following statement at the top of the code file:
' Case insensitive compare
Option Compare Text
' Case sensitive compare
Option Compare Binary
If the above is not in the file at the top then in the project configuration on the Compile tab the Option compare Combobox is set to Text
Please check your setting as stated above.