楼主: suizh
823 1

*求助*,怎么样把*第四个观测的第二个号码串输出来*/ [推广有奖]

  • 3关注
  • 2粉丝

博士生

53%

还不是VIP/贵宾

-

威望
0
论坛币
0 个
通用积分
6.5001
学术水平
6 点
热心指数
6 点
信用等级
5 点
经验
87 点
帖子
122
精华
0
在线时间
470 小时
注册时间
2012-10-23
最后登录
2024-10-22

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
data a;/*求助*,怎么样把*第四个观测的第二个号码串输出来*/
input string $ 50.;
cards;
THIS LINE DOES NOT HAVE ANY PHONE NUMBERS ON IT
THIS LINE DOES: (123)345-4567 LA DI LA DI LA
ALSO VALID (123) 999-9999
TWO NUMBERS HERE (333)444-5555 AND (800)123-4567
;
run;

data b;
set a;
per=prxparse("/\(\d{3}\) ?\d{3}-\d{4}/");
retain per;
if prxmatch(per,string) then do;
call prxsubstr(per,string,start,length);
b=substr(string,start,length);
b=compress(b," ");
output;
end;
run;
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:怎么样 PrxMatch compress Numbers RXPARSE

沙发
qinly10 发表于 2013-3-30 23:10:12 |只看作者 |坛友微信交流群
试试call prxnext:

data b;
set a;
if _n_=1 then
per=prxparse("/(\(\d{3}\) ?\d{3}-\d{4})/");
retain per;
    start = 1;
   stop = length(string);
   call prxnext(per, start, stop, string, position, length);
      do until (position = 0);
         found = substr(string, position, length);
                 output;
         call prxnext(per, start, stop, string, position, length);
      end;
run;

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注cda
拉您进交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-11-5 18:49