नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
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"""