set-string <variable> [ = <string> ] [ process-scope ] [ unquoted ] set-string <variable> [ <index> ] = <number>Copied!
set-string my_string unquoted = this is "some" string where there escape characters like \n do "not work"Copied!
set-string my_string = "this is \"some\" string where there escape characters like \\n do \"not work\""Copied!
set-string str = "some string" set-string str[0] = 65 // or using a character constant as a number, to the same effect set-string str[0] = 'A'Copied!
set-string my_string
Copied!
set-string my_string = "abc"Copied!