Click here to Skip to main content
Click here to Skip to main content

How to Toggle String Case in .NET

By , 7 Dec 2011
 

For VB.NET users:

Public Function ToggleCase(input As String) As String
	Dim result As String = String.Empty
	Dim inputArray As Char() = input.ToCharArray()
	For Each c As Char In inputArray
		If Char.IsLower(c) Then
			result += [Char].ToUpper(c)
		Else
			result += [Char].ToLower(c)
		End If
	Next
	Return result
End Function

One more:

Dim mystring As New StringBuilder("AbCd")
For i As Integer = 0 To mystring.Length - 1
    Dim c As Char = mystring(i)
    mystring(i) = If([Char].IsLower(c), [Char].ToUpper(c), [Char].ToLower(c))
Next

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Jαved
Student
India India
Member
« I Love to Code ».
In the meantime I like to surf the Internet and get to know about new Technology, Watching Movies and playing cricket.
 
Currently I'm doing Masters In Computers.

CodeProject helped me a lot to learn and I am always thankful to all the Members who make this happen.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralPosting a vb.net version of the same code is NOT an alternat...mvpJohn Simmons / outlaw programmer7 Dec '11 - 1:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 7 Dec 2011
Article Copyright 2011 by Jαved
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid