Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
Expression.Identifier(name as text) as text
About
Returns the M source code representation of an identifier name
.
Example 1
Get the M source code representation of an identifier.
Usage
Expression.Identifier("MyIdentifier")
Output
"MyIdentifier"
Example 2
Get the M source code representation of an identifier that contains a space.
Usage
Expression.Identifier("My Identifier")
Output
"#""My Identifier"""