For example, if I had the atom 'ABCD, is there a way to determine the individual characters that make up the atom?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
To get the list of characters in the symbol:
You can perform any sort of usual string analysis on a symbol if you first convert it:
|
|||
|
|
|
Those characters do not "make up an atom" (an atom is something different; roughly "not a list"). What you have there is a symbol. A symbol has a name, by which it is referred to. You can get the name of a symbol with the function
(Note that both Symbols also have other properties, which you can get by the functions For an overview, take a look at chapter 10 of the Hyperspec. |
|||||
|