How can I escape characters in string literals? #2978
Mike Stall (MikeStall)
started this conversation in
General
Replies: 1 comment
|
you can also use Char(10) for a newline. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Here's how to escape various characters in a string literal in Power Fx:
\"Hello\"""Hello""\u65Char(65)or triple quote: """abc
two"""
two"
See: https://learn.microsoft.com/en-us/power-platform/power-fx/expression-grammar#text-literals
All reactions