cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
rshehadah
Level II

Add double quotes to a string

Hi,

 

How can I add double quotes using formula?

 

"" || :Code || "" || ":" || "" || :Description || "" || "," 

 

I try doing "", but it does not work.

 

Thank you,

Rami

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Add double quotes to a string

\! is the escape character sequence in JMP.....look in the Scripting Guide for further information on using the escape character sequence. Therefore, you need to specify

\!"

within a quote string to specify an embedded quote
Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Add double quotes to a string

\! is the escape character sequence in JMP.....look in the Scripting Guide for further information on using the escape character sequence. Therefore, you need to specify

\!"

within a quote string to specify an embedded quote
Jim

Recommended Articles