concatenate ""(double quote) with any other string

chanchal

New member
Local time
Today, 12:19
Joined
Dec 4, 2003
Messages
5
I want to concatenate ""(double quote) like any other string how can i do it

like this:"<html>" & """ & "<html>"

but it will just create a blank space. I need to print "" as a string how can i do it.

i have some shtml page. The codes are the same except for
<img> tag i have to insert defferent img name

like this <img src="1245533E_01.jpg">

so i have created a application which can take image name from the user and add to img tag. For this i have taken a input box.

but the problem rises when i want to concatenate ""(double qoute before and after the image name." 12212123.jpg" the name is there but the " " are missing . i know that "" are one of the key word of vba and vb .


so how can i solve this problem can anyone help me on this
 
In VBA, two consecutive double quotes will return one double quote.

So:-
"<img src=""" & "1245533E_01.jpg" & """>"

should return:-
<img src="1245533E_01.jpg">
 

Users who are viewing this thread

Back
Top Bottom