Dear sas users, say, I have following codes: data test;
string='Start ABC ABC ABC End';
new_string = prxchange("s/ABC/someotherstuff/", -1, string);
run; apparently, there are 3 matches. My question is: is there any function(or option) so that the number of matches can be obtained?
... View more