The KUPDATE function
replaces the value of
argument with the expression in
characters-to-replace. KUPDATE replaces
n characters
starting at the character you specify in
position.
Note: If you set the NLSCOMPATMODE
system option to on, parameter,
characters-to-replace, processes the data based on previous SAS releases. If NLSCOMPATMODE
is off, then
characters-to-replace uses the 9.2 functionality. See the following table for examples.
|
|
NLSCOMPATEMODE
kkupdate("123456", 2,3);
|
|
NLSCOMPATEMODE
kupdate("123456", 2,3,"abcd");
|
|
NONLSCOMPATEMODE
kupdate("123456", 2,3);
|
|
NONLSCOMPATEMODE
kupdate("123456", 2,3,"abcd");
|
|