Micro Focus QTP (UFT) Forums

Full Version: Concatinate "
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi Friends,

Problem:
Code:
a=browser
b = ("

msgbox c

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

Question : How is this possible?

Thanks,
Aravind
Code:
a= "browser"
b = "(" & """"

c= a & b

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

c= a & b

msgbox c



Hi ,

Its working . Thanks friend.

Thanks..