HI I have two list. list 1 is a list of symbols, and list 2 uses those symbols as patterns in an arbitrary order. How can reorder list 2 by list 1? I'd like to specifically use list 1 as the basis off the transformation, as the actual usage case grows in complexity.
list1={a,b,c}
list2={b->3,a->2,c->4}
output should be. {a->2,b->3,c->4)
Thanks