Automation Testing is a software testing technique that performs using special automated testing software tools to execute a test case suite.
How to get the vowels in QTP?
Get link
Facebook
X
Pinterest
Email
Other Apps
To get the vowels from the input string, use the below code.
str = "Madhavi"
For i= 1 to len(str)
var = mid(str,i,1)
Select Case var
Case "a", "e", "i", "o", "u"
msgbox "Character: " & var & " is vowel"
Case else
msgbox "Character: " & var & " is not a vowel"
End Select
Next
Comments
Post a Comment