Convert to Upper case and Lower Case : String « Language Basics « VB.Net

VB.Net
1. 2D
2. Application
3. Class
4. Data Structure
5. Database ADO.net
6. Development
7. Event
8. File Directory
9. Generics
10. GUI
11. Language Basics
12. Network Remote
13. Thread
14. Windows System
15. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
VB.Net » Language Basics » StringScreenshots 
Convert to Upper case and Lower Case
Convert to Upper case and Lower Case

Imports System


Public Class MainClass

   Shared Sub Main()
        Dim river As String = " www.java2s.com   "
        Console.WriteLine(river.ToUpper())
        Console.WriteLine(river.ToLower())
        
   End Sub 

End Class


           
       
Related examples in the same category
1. String Object: =, Is and Mid
2. String InStrString InStr
3. String InsertString Insert
4. Combine Insert and IndexOfCombine Insert and IndexOf
5. Use the Mid function to replace within the stringUse the Mid function to replace within the string
6. Use String.Equals methodsUse String.Equals methods
7. Two ways to copy stringsTwo ways to copy strings
8. Compare String: case sensitive and not sensitiveCompare String: case sensitive and not sensitive
9. Two ways to concatenate stringsTwo ways to concatenate strings
10. Sub string with only one parameter
11. String PadLeftString PadLeft
12. String ConstructorString Constructor
13. String properties Length and Chars and method CopyTo of class StringString properties Length and Chars and method CopyTo of class String
14. Comparing stringsComparing strings
15. Demonstrating StartsWith and EndsWith methodsDemonstrating StartsWith and EndsWith methods
16. Using String searching methods: IndexOfUsing String searching methods: IndexOf
17. LastIndexOf to find a character in a stringLastIndexOf to find a character in a string
18. IndexOf to locate a substring in a stringIndexOf to locate a substring in a string
19. LastIndexOf to find a substring in a stringLastIndexOf to find a substring in a string
20. IndexOfAny to find first occurrence of character in arrayIndexOfAny to find first occurrence of character in array
21. LastIndexOfAny to find first occurrence of character in arrayLastIndexOfAny to find first occurrence of character in array
22. String Substring methodString Substring method
23. String class Concat methodString class Concat method
24. String ToLower and ToUpperString ToLower and ToUpper
25. String Trim methodString Trim method
26. String ToString methodString ToString method
27. String ToCharArray method String ToCharArray method
28. Concatenate the strings and display the resultsConcatenate the strings and display the results
29. The length of the stringThe length of the string
30. Display the first part of a string
31. String: set value and display
32. Concatenate the stringsConcatenate the strings
33. Display the length of the stringDisplay the length of the string
34. Get sub stringGet sub string
35. Replace the string occuranceReplace the string occurance
36. String compareString compare
37. String Replace DemoString Replace Demo
38. Concatenate String with Integer into one StringConcatenate String with Integer into one String
39. Compare two StringsCompare two Strings
40. Concatenate StringsConcatenate Strings
41. String CopyString Copy
42. String.Equals DemoString.Equals Demo
43. String IndexOf and InsertString IndexOf and Insert
44. String: Substring, LastIndexOfString: Substring, LastIndexOf
45. String SplitString Split
46. Trim String spaceTrim String space
47. String ends withString ends with
48. String IndexOf and Insert at a positionString IndexOf and Insert at a position
w__w___w_.___j_a__v___a2_s.__c___om_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.