Micro Focus QTP (UFT) Forums
Concatinate " - Printable Version

+- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums)
+-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP)
+--- Forum: VB Scripting/Descriptive Programming (https://www.learnqtp.com/forums/Forum-VB-Scripting-Descriptive-Programming)
+--- Thread: Concatinate " (/Thread-Concatinate)



Concatinate " - aravind - 06-22-2008

Hi Friends,

Problem:
Code:
a=browser
b = ("

msgbox c

Required result:
"C" Should give the result - browser("

Question : How is this possible?

Thanks,
Aravind


RE: Concatinate " - Ankur - 06-22-2008

Code:
a= "browser"
b = "(" & """"

c= a & b

msgbox c



RE: Concatinate " - aravind - 06-22-2008

Ankur Wrote:
Code:
a= "browser"
b = "(" & """"

c= a & b

msgbox c



Hi ,

Its working . Thanks friend.

Thanks..