Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If the value also contains double quotes and the entire string is double quoted then escape the double quote with a backslash.

Keyword Value

Parsed Value


KEYWORD (     )

null

keyword is ignored

KEYWORD ( "" )


empty

KEYWORD ( "    " )


spaces

KEYWORD ( abc )

abc


KEYWORD ( "abc" )

abc


KEYWORD ( "  abc" )

  abc


KEYWORD ( ab"c )

ab"c


KEYWORD ( "ab\"c" )

ab"c


KEYWORD ( "a(b)c" )

a(b)c


KEYWORD ( "a(\"b\")c" )

a("b")c


...