Hello People,
How do I add handle single or double quotes in a string argument?
Below are 2 examples:
-
This is a test’s value
-
This is a test"s value
Appreciate your help!!!
Cheers!!
Hello People,
How do I add handle single or double quotes in a string argument?
Below are 2 examples:
This is a test’s value
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!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.