Skip to main content
Post Made Community Wiki
Source Link
Jason B.
  • 72.3k
  • 3
  • 152
  • 317

If you want to get {a,b,c} from {x -> a, y -> b, z -> c} you should use Values:

In[10]:= Values[{x -> a, y -> b, z -> c}] Out[10]= {a, b, c} 

For what it's worth I only read the post title, so there may be some context I'm missing here.