5
Views
2
Comments
Quotations mark
Question
Hi,

Could anyone know how can I add quotations mark  to string sth like this "str"ing". In line below I would like quotations mark befor and after Arkusz1Table.List.Current.Arkusz1.router
concat(text,"<DEVICE NAME = "+Arkusz1Table.List.Current.Arkusz1.router +">")


I tried double character "" and \" but it doesn't work properly
UserImage.jpg
Mark
Hi Norbert,

The concat() function works as follows:
contact("stri","ng") to return "string"

You can enter the following in an expression widget, which should give you your result:

"<DEVICE NAME = "+Arkusz1Table.List.Current.Arkusz1.router +">"

Regards,
Mark
2018-10-03 18-32-42
Fernando Santos
Hi,

Do: 
"<DEVICE NAME = """+Arkusz1Table.List.Current.Arkusz1.router +""">"

Cheers,

Fernando
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.