How to change the sign " to a string

(imported topic written by bearandy)

I want to add " in front of a name and on the back of a name : “name”

EX:I can use " - " & computer name & " - "

But can’t " " " & computer name & " " "

I don’t know how to change " to a string not a relevance.

Any suggestion? Thanks

(imported comment written by BenKus)

Use percent encoding for special characters. “%22” is the double-quote…

“%22” & computer name & “%22”

Ben

(imported comment written by bearandy)

Thanks!

And if there are many names I want to add it:

Ex:"%22" & ( names of running applications) & “%22”

How could I do it?

(imported comment written by bearandy)

I use this and it works :

(("%22" &(name of it) & “%22” ))of running applications

Thanks