Mathematica 9 is now available
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.
Mathematica > Core Language > Tuning & Debugging > Symbol Handling >
Mathematica > Core Language > Package Development > Namespace Management > Symbol Handling >

Symbol

Symbol["name"]
refers to a symbol with the specified name.
  • All symbols, whether explicitly entered using Symbol or not, have head Symbol.
  • x_Symbol can be used as a pattern to represent any symbol.
  • The string "name" in Symbol["name"] must be an appropriate name for a symbol. It can contain any letters, letter-like forms, or digits, but cannot start with a digit.
  • Symbol["name"] creates a new symbol if none exists with the specified name.
  • A symbol such as x has a name "x".
  • If Symbol["name"] creates a new symbol, it does so in the context specified by $Context.
Use Symbol to create new symbols in a program:
Use Symbol for pattern matching:
Create a symbol in a given context:
Create a symbol in the current context:
Create several symbols in a program:
Symbol creates new symbols in the current context:
Unique creates symbols with a unique new name:
Module creates new temporary symbols every time it is evaluated:
Symbol and SymbolName are inverses of each other:
Many functions of symbols also accept symbol names as arguments:
Context gives the context of a symbol:
Possible symbol names can be characterized by regular expressions:
The name must satisfy the syntax for symbol names:
New in 1 | Last modified in 3
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team