On Avoiding ToLower

A reader writes in to ask if uppercase is OK, why isn't using ToLower?

On Avoiding ToLower
I found Bill McCarthy's article on VB's operators ["Load Up With VB's Operators," August 2007] interesting. However, I was curious why Bill asserted that it's OK to convert each string to uppercase, but you should avoid using ToLower. Can you tell me what is wrong with using ToLower, please?

Premjit (Maz) Mazumdar
received by e-mail

It depends a lot on the locale. For example, in some locales é will uppercase to E, yet E will lowercase to e. If you compare the lowercase of E to é, it won't be a match. Uppercase, on the other hand, will generally match. The use of ToUpper can be handy in circumstances like this one:

Select Case myString.ToUpper
	Case "ABC"
	Case "DEF", "FGH"
	Case "IJK"
' ...

You can also specify the culture to use:

mystring.ToUpper
(Globalization.CultureInfo.InvariantCulture)

For the most part, using ToUpper won't cause any problems, but the ToUpper call does cause a new string to be created, so it can get expensive if you use it repeatedly. With some locales, and with special characters such as the German letter ß, ToUpper won't give the same results as the Compare or Equals methods. That's why I said in the article to consider using String.Compare instead. Consider how things change if we write the ToUpper code sample using String.Compare or String.Equals:

If String.Equals(myString, "ABC",
StringComparison.OrdinalIgnoreCase) Then
ElseIf String.Equals(myString, "DEF", 
         StringComparison.OrdinalIgnoreCase) _
	OrElse String.Equals(myString, "FGH",
StringComparison.OrdinalIgnoreCase) _ 		
    Then
ElseIf String.Equals(myString, "IJK", 
   StringComparison.OrdinalIgnoreCase) Then
' ...
End If

I think I'd much rather suffer a little performance hit for the sake of readability.

--Bill McCarthy


Letters to Visual Studio Magazine are welcome. Letters must include your name, address, and daytime phone number to be considered for publication. Letters might be edited for form, fit, and style. Please send them to Letters to the Editor, c/o Visual Studio Magazine, 2600 El Camino Real, Suite 300, San Mateo, CA 94403; fax them to 650-570-6307; or e-mail them to [email protected]. Note that the views expressed in the letters section are the opinions of the letters' authors, and do not necessarily reflect the opinions of Visual Studio Magazine or those of 1105 Media.

About the Author

This story was written or compiled based on feedback from the readers of Visual Studio Magazine.

comments powered by Disqus

Featured

  • AI for GitHub Collaboration? Maybe Not So Much

    No doubt GitHub Copilot has been a boon for developers, but AI might not be the best tool for collaboration, according to developers weighing in on a recent social media post from the GitHub team.

  • Visual Studio 2022 Getting VS Code 'Command Palette' Equivalent

    As any Visual Studio Code user knows, the editor's command palette is a powerful tool for getting things done quickly, without having to navigate through menus and dialogs. Now, we learn how an equivalent is coming for Microsoft's flagship Visual Studio IDE, invoked by the same familiar Ctrl+Shift+P keyboard shortcut.

  • .NET 9 Preview 3: 'I've Been Waiting 9 Years for This API!'

    Microsoft's third preview of .NET 9 sees a lot of minor tweaks and fixes with no earth-shaking new functionality, but little things can be important to individual developers.

  • Data Anomaly Detection Using a Neural Autoencoder with C#

    Dr. James McCaffrey of Microsoft Research tackles the process of examining a set of source data to find data items that are different in some way from the majority of the source items.

  • What's New for Python, Java in Visual Studio Code

    Microsoft announced March 2024 updates to its Python and Java extensions for Visual Studio Code, the open source-based, cross-platform code editor that has repeatedly been named the No. 1 tool in major development surveys.

Subscribe on YouTube