ksc_escape_char
Use this command to set token value to the escaped value.
ksc_escape_char <token_name>=<value> ESCAPING_CHAR=<escaping character> CHARS_TO_ESCAPE=<chars to escape> escapeUnicode=<whether to escape unicode>
-
<token_name>=<value>
must be the first argument. -
ESCAPING_CHAR
: the escaping char. The default value is\
. -
CHARS_TO_ESCAPE
: the chars which needs to be escaped.Note: The
ESCAPING_CHAR
itself is always escaped. -
escapeUnicode
: Optional. If set toY
, the non-ascii characters will be escaped to the\uxxxx
format.
Example using ksc_escape_char
ksc_escape_char ESCAPED_FILENAME=[P.P_SUB_PATH][P.P_FILENAME] ESCAPE_UNICODE=Y
ksc_escape_char ESCAPED_OBJECT=[P.KINTANA_OBJECT] ESCAPING_CHAR=\ CHARS_TO_ESCAPE=" ESCAPE_UNICODE=Y