Tech Tutorials Database
GeekArticles Microsoft Microsoft.NET
 

How to Toggle String Case in .NET

 
Author: codeproject.com
Category: Microsoft.NET
Comments (0)

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 +=...

Read More...




Sponsored Links




Read Next: Exporting Data From DataGridView or Datatable to ExcelSheet Using HTML



 

 

Comments



Post Your Comment:

Your Name:*
e-mail ID:(required for notification)*
Image Verification: 
 
 Subscribe