Special characters in a TEXT value

There is a number of characters that you need to escape using a slash. The following is an example of using a slash to escape double quotes.

TEXT example := "This is /"only/" an example"

If a literal slash is required, you need to escape it with a second slash, as shown in the following example.

TEXT example := "mr//mrs"