write a script for get the following result:
username
password
frm the
string1="A=username"
string2="B=password"
Answers were Sorted based on User's Feedback
Answer / sandeep guttikonda
The Above Posted answer is the very correct one.
Here I would like to show one more option but, not as good
as above one ( Just to tell the other option)
String1 = "A=username"
String2 = "B=password"
We are having 3 good buildin functions in VBscript to work
upon the test messages.
1) Left()
2) Mid()
3) Right()
Here in this case we can use Right() Function to retrieve
the required text.
We can use this function to get a specified number of
characters from the right side of a string.
Syntax: Right(String,Length)
To get username:
Code:
Username = Right(String1,8)
Msgbox Username
As length of us username is 8 I am using 8 in the function.
To get Password:
Code:
Password = Right(String2,8)
Msgbox Password
As length of us Password is 8 I am using 8 in the function.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / litan
string1="A=username"
string2="B=password"
Username=Split(string1,"=")(1)
PAssword=Split(string2,"=")(1)
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / giriyappa badagar
string1="A=username"
string2="B=password"
UName=Split(string1,"=")
PWord=Split(string2,"=")
msgbox UName(1)
msgbox PWord(1)
| Is This Answer Correct ? | 1 Yes | 0 No |
What are the Features & Benefits of Quick Test Pro ?
there is 3 flash player buttons does QTP identify them or not else we have to do install anything related that software if we have to install what is that software and how we install it into QTP8.2 GIVE ME EXCAT ANSWER IF U KNOW.
What is checkpoints for quicktest professional (qtp)?
Diff b/w test scenario's and test Procedures?
While writing script using For Next Statement in QTP, I try defining the variable in Lib File I am getting syntax error whereas if I use the variable in script file, the script works fine. Can anyone help me in finding the reason behind this?. E:g Dim intStartRow (Define in Lib File----- say abc.vbs) Dim intRow (If I define this variable in Lib file I am getting Syntax error where as if I define in the script file ---- say xyz.mts the script works fine) IntStartRow=2 For intRow = intStartRow to xlWrksht.UsedRange.Rows.Count ‘Some Code here Next
How to get the format of a webedit class in qtp. How can i know that particular webedit accept what type of format like "mm/dd/yyyy" or "$" or Alphanumeric
What is throw object?
What are table and db checkpoints?
Can abody explain me Send keys concept
can u pls explain me About Driver script.
how to read log file using QTP??
In qtp is it possible to check broken links of a page?