I have a list $\{x,y,z,w,p\}$ and I want to replace $x,y,w$ by $q$. This works
{x,y,z,w,p}/.{x->q, y->q, p->q} But is there a way to do this concisely? I tried the following, but doesn't work
{x,y,z,w,p}/.{(x || y || p) ->q} Thanks in advance for any help.