Handling quotes in a string arguement

Hello People,

How do I add handle single or double quotes in a string argument?

Below are 2 examples:

  1. This is a test’s value

  2. This is a test"s value

Appreciate your help!!!

Cheers!!

hi @voranir
to double quotes you can use Chr(34) + “String text” + Chr(34)
ex: “This is a test”+Chr(34)+“s value”
to single quote use that: “This is a test”+Chr(39)+“s value”

Regards!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.