我正在寻找一个有效的超级简单的prxposn示例。像这样的东西,只有我想要提取文本的代码。
data test;
re = prxparse('/(hello)/');
extract = prxposn(re,1,'hello');
output;
run;
结果
re extract
1
答案 0 :(得分:4)
data test;
re = prxparse('/(hello)/');
if prxmatch(re,'hello') then extract = prxposn(re,1,'hello');
output;
run;
调用prxmatch是prxposn工作所必需的。
结果
re extract
1 hello