Technology Programming

How to Check a String for the Alphabet in Visual Basic Code

    • 1). Launch Microsoft Visual Basic Express and click the "New Project" on the "Start Page" tab. Click "Visual Basic" below "Installed Templates" and double-click "Console Application" to create a new console project.

    • 2). Copy and paste the following code below "Sub Main()" to create two variables you will use to check for alphabet characters in a string:

      Dim bldStr As New System.Text.StringBuilder

      Dim arrayChr() As Char = "Today is the 18th."

    • 3). Create a "For...Loop" by typing the following code and append each alphabet character to the "bldStr" variable:

      For Each chtr As Char In arrayChr

      If Char.IsLetter(chtr) Then bldStr.Append(chtr)

      Next

    • 4). Display the string using the Console window by typing the following code:

      Console.Write(bldStr)

      MsgBox("Done")

    • 5). Press "F5" to run your program and view the results.

SHARE
RELATED POSTS on "Technology"
Blitzerwarner: Could You Escape the Speed Cameras?
Blitzerwarner: Could You Escape the Speed Cameras?
What Makes a Perfect Web Design Company?
What Makes a Perfect Web Design Company?
Inside No-Fuss Products In Gaming Computers
Inside No-Fuss Products In Gaming Computers
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Free Music Players For Websites
Free Music Players For Websites
'See How NCP Tracks Down Fake Ration Card Holders'
'See How NCP Tracks Down Fake Ration Card Holders'
You Can Stop Panic Attacks in Just two Minutes
You Can Stop Panic Attacks in Just two Minutes
WordPress Blog to WP Site! A Journey to Online Success
WordPress Blog to WP Site! A Journey to Online Success
Videos will give your business portal an extra leverage
Videos will give your business portal an extra leverage
Excellent Ways To Make Weight Loss Work For You
Excellent Ways To Make Weight Loss Work For You
Five Notable Differences between National and International Logo Designs
Five Notable Differences between National and International Logo Designs
Who Should Your Phoenix Web Design Client Be?
Who Should Your Phoenix Web Design Client Be?
White Papers & Other Documents - including ALFLB
White Papers & Other Documents - including ALFLB
Google Analytics Tips
Google Analytics Tips
Want To Make Your Website Faster? Follow These Steps
Want To Make Your Website Faster? Follow These Steps
The Starting of Couture Apparel
The Starting of Couture Apparel
Choose Custom Website Design Services
Choose Custom Website Design Services
Choosing the Right Joomla CMS Developer
Choosing the Right Joomla CMS Developer
A Look at SQL Server Denali AlwaysOn
A Look at SQL Server Denali AlwaysOn
4 Tips to Choose the Perfect Flash Animation Course
4 Tips to Choose the Perfect Flash Animation Course

Leave Your Reply

*