I have two simple macros:
%macro One(mvStr);
/*some code here to replace varOne -> stringOne*/
%mend One;
%macro Two;
%local mvStr;
%let mvStr = "String varOne StringvarOneString";
%One(&mvStr);
%mend Two;
So, How to replace all substrings varOne with stringOne?