Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How can I find out whether a word in a string is existed or
not
for example
"QTP IS A POWERFULL TOOL FOR AUTOMATION"
How can i find out whether "powerfull" is existed in the
above string or not
Could anyone answer it?

Answers were Sorted based on User's Feedback



How can I find out whether a word in a string is existed or not for example "QTP IS A POWE..

Answer / anshu

I think u just need to use

INSTR() that's it.

Is This Answer Correct ?    12 Yes 1 No

How can I find out whether a word in a string is existed or not for example "QTP IS A POWE..

Answer / naina

C = "QTP IS A POWERFULL TOOL FOR AUTOMATION"
msgbox Instr(1,c,"POWERFULL")

The result will be 10 , which is the position of the first
occurrence of the string POWERFULL

Is This Answer Correct ?    7 Yes 1 No

How can I find out whether a word in a string is existed or not for example "QTP IS A POWE..

Answer / sunil

Dim str,word

word=inputbox("enter the word for search")
str=inputbox("Enter a Sentence")
if instr(1,str,"word") then
msgbox "Searching word is present in the sentence"
else
msgbox"Searching word is not present in the sentence"
end if

Is This Answer Correct ?    3 Yes 0 No

How can I find out whether a word in a string is existed or not for example "QTP IS A POWE..

Answer / suresh

you fool nithya... y ur using FSO....and 10 lines of code...

this is too bad,,,,,
must use Instr
that s it

Is This Answer Correct ?    4 Yes 1 No

How can I find out whether a word in a string is existed or not for example "QTP IS A POWE..

Answer / prasoona

s="QTP IS A POWERFULL TOOL FOR AUTOMATION"
ss="powerfull"
If Instr(1,s,ss,vbTextCompare)<> 0 Then
msgbox ss&" exist in " &s
Else
msgbox ss&" is not exist in " &s
End If

Is This Answer Correct ?    3 Yes 1 No

How can I find out whether a word in a string is existed or not for example "QTP IS A POWE..

Answer / akshar jain

just assign that entire string to a variable & use either
instr or strcomp thats it

Is This Answer Correct ?    0 Yes 2 No

How can I find out whether a word in a string is existed or not for example "QTP IS A POWE..

Answer / nithya.m

Create a filesystem object . Read the file till the
letter "P" comes . After that Read till the length of the
word which you want to Check (In this case it is 9). then
compare the word with the word which you want to check
which should have been stored already . If the
stringcompare is true means, the word exists. Please go
through the following code for this example

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objReadFile = objFSO.OpenTextFile("FILENAME" ,1)
Str="Powerfull"
Str1=objReadFile.ReadAll()
Set objReadFile_new = objFSO.OpenTextFile("FILENAME" ,1)
For i = 1 to len(Str1)
Str2=objReadFile_new.Read(i)
if Str2=Left(Str,1) then
Str3=ObjReadFile_new.Read(len(Str))
if Str3=Str then
Msgbox "FileExist"
Exit For
End if
Next

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More QTP Interview Questions

If there is a change in the object type eg: A button is changed as link, 1. How to edit that in the shared object repository. 2.What options are available to edit the object within shared object repository other than copy from loca; 3.What would be the effect of the change in Coded Scripts within QTP and Functions stored in .vbs file which are loaded and used in QTP

0 Answers   HP,


I am executing a batchfile.In one script on one Button i have inserted a checkpoint.It is in a loop,my checkpoint is going to fail sometimes.That failed results only I have to log in a file.How it's possible...pls give the solution for this?

6 Answers   Wipro,


what is diff b/w function and action?

8 Answers   VSoft,


.qfl extension for which file? where vl use it

1 Answers   iFlex,


What are the environment variables?

3 Answers  


what type of application we can select for automation testing and what is the entry criteria for automation

1 Answers  


In QTP, Give the difference of Global sheet and Local sheet in datatable?

3 Answers  


what is the Exact Meaning of Environment Variables?

10 Answers   AppLabs,


Explain types of exception handling and script for that?

2 Answers  


How many ways we can parameterize data in QTP?

1 Answers   Crea,


How to use descriptive programming?

0 Answers  


how we implement share object repository in QTP 9.0 without using quality Centre , Explaine in brief

0 Answers   HCL,


Categories