Skip to content

Commit ca292f6

Browse files
authored
String validation VB code.
1. Find if the input string has all of the alphabets; capital or small alike.
1 parent dced310 commit ca292f6

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

StrManipulation.vb

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
Module StrManipulation
2+
3+
Sub Main()
4+
'DECLARATIONS
5+
Dim isValid As Boolean
6+
Dim myChar As Char
7+
Dim Str1 As String
8+
Dim i As Integer
9+
10+
'initialisations
11+
isValid = True
12+
myChar = ""
13+
Str1 = ""
14+
i = 0
15+
16+
'Input
17+
Console.Write("Enter string to validate: ")
18+
Str1 = Console.ReadLine
19+
20+
'PROCESS
21+
'Length Check
22+
If Len(Str1) <> 11 Then isValid = False
23+
24+
'Check fixed position of fixed characters
25+
If Mid(Str1, 4, 1) <> "-" Or Mid(Str1, 8, 1) <> "-" Then isValid = False
26+
27+
'GROUP1 "AAA"
28+
For i = 1 To 3
29+
myChar = Mid(Str1, i, 1)
30+
If myChar < "A" Or myChar > "Z" Then isValid = False
31+
Next
32+
33+
'GROUP2 "999"
34+
For i = 5 To 7
35+
myChar = Mid(Str1, i, 1)
36+
If myChar < "0" Or myChar > "9" Then isValid = False
37+
Next
38+
39+
'GROUP3 "aaa"
40+
For i = 9 To 11
41+
myChar = Mid(Str1, i, 1)
42+
If myChar < "a" Or myChar > "z" Then isValid = False
43+
Next
44+
45+
If isValid = True Then
46+
Console.WriteLine("Entered string is valid.")
47+
Else
48+
Console.WriteLine("Entered string is invalid.")
49+
End If
50+
51+
Console.ReadKey()
52+
End Sub
53+
54+
End Module

0 commit comments

Comments
 (0)