This should work:
regexp_replace(x, '[^/]*Walmart[^/]*', ' ',1,0,'i') -- case insensitive regexp_replace(x, '[^/]*Walmart[^/]*') -- case sensitive
Check if there's 'Walmart' and then replace everything between the previous slash and the next slash with a space.