Update a process variable with a backslash at the end of the string
Why is it not possible to update a process variable with for e.g. "Testdomain\"?
Without the backslash it works.
The same problem occurs with the inline functions (concat) - for e.g.: @Concat("Testdomain\", "Teststring")
-
Hello Ryan,
Some Commonly used special characters like ('), ("), (\),(?) in your string value needs to escape by prefixing them with a (\).
Here are some examples:
"Hello\\" will result in Hello\
"\"Hi there\"" will result in "Hi there"
"Someone\'s" will result in Someone's
"Are you there\?" will result in Are you there?for all the characters which need to be escaped , kindly refer the link : https://learn.microsoft.com/en-us/cpp/c-language/escape-sequences?view=msvc-170
Best Regards
請登入寫評論。
評論
4 條評論