For a variable I have, I'd like to censor all addresses it contains if there is any. e.g. data _null_; x = prxchange("s/(\w+) \b(STREET)\b/*LOCATION REMOVED*/",-1, 'I WAS WALKING ON QUEEN STREET IN THE MORNING'); put x=; run; But I also want to create exceptions, where prxchange ignores strings like 'THE STREET', as in 'I WAS DRIVING ON THE STREET' Is it possible to do this? Thanks in advance
... View more