0

Hi I have the following code

delete: = 'testing # {}' testing ';

the problem is that when I use 'fails because it does not know how to avoid this error in other languages ​​such as perl is solved by using \' delphi but does not work.

someone could help form the variable without errors?

RRUZ
  • 134,889
  • 20
  • 356
  • 483
Jose Martinez
  • 303
  • 2
  • 6
  • 14
  • 1
    You did not provide any information about what you are attempting to do, or what the error message is saying. – Remy Lebeau Oct 27 '13 at 16:04

1 Answers1

3

Assuming that your problem is trying to put a quote character inside a string literal, then try this:

delete := 'testing # {}'' testing ';
Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770