五月天婷亚洲天久久综合网,婷婷丁香五月激情亚洲综合,久久男人精品女人,麻豆91在线播放

  • <center id="8gusu"></center><rt id="8gusu"></rt>
    <menu id="8gusu"><small id="8gusu"></small></menu>
  • <dd id="8gusu"><s id="8gusu"></s></dd>
    樓主: swu350407
    20164 12

    [問答] 求助:哪位大大會用SAS下載網(wǎng)頁查詢數(shù)據(jù) [推廣有獎]

    • 1關(guān)注
    • 1粉絲

    大專生

    36%

    還不是VIP/貴賓

    -

    威望
    0
    論壇幣
    467 個
    通用積分
    0
    學(xué)術(shù)水平
    0 點
    熱心指數(shù)
    0 點
    信用等級
    0 點
    經(jīng)驗
    710 點
    帖子
    25
    精華
    0
    在線時間
    67 小時
    注冊時間
    2012-2-3
    最后登錄
    2023-3-21

    +2 論壇幣
    k人 參與回答

    經(jīng)管之家送您一份

    應(yīng)屆畢業(yè)生專屬福利!

    求職就業(yè)群
    趙安豆老師微信:zhaoandou666

    經(jīng)管之家聯(lián)合CDA

    送您一個全額獎學(xué)金名額~ !

    感謝您參與論壇問題回答

    經(jīng)管之家送您兩個論壇幣!

    +2 論壇幣
    想從網(wǎng)上下載歷史水位數(shù)據(jù),比如
    http://www.ctgpc.com.cn/inc/sqsk.php
    從網(wǎng)上找到類似代碼:
    源自本壇http://xalimeijing.com/thread-1118208-1-1.html

    %let url = http://funds.money.hexun.com/fun ... 2.aspx?code=000001;
    %let code = %scan(&url,2,'=');

    filename raw url "&url";

    data temp;
      infile raw length=len lrecl=5000;
      input x $varying5000.len;
    run;

    data temp2;
      set temp;
      retain code pattern_id ;
      if _n_ = 1 then do;
        code = &code;
            pattern_id = prxparse("#(\d{4}-\d{2}-\d{2}|\d\.\d{4})</td>$#");
      end;
      if prxmatch(pattern_id,strip(x));
      call prxposn(pattern_id,1,start,length);
      y = substrn(x,start,length);
      keep code y;
    run;

    data final;
      set temp2;
      retain date unit_value cum_value;
      format code Z6. date yymmdd10. unit_value cum_value 8.4;
      if mod(_n_,3) = 1 then date = input(y,yymmdd10.);
      else if mod(_n_,3) = 2 then unit_value = input(y,8.);
      else if mod(_n_,3) = 0 then do;
        cum_value = input(y,8.);
            output;
      end;
      drop y;
    run;



    非常感謝guoluo提供的代碼,希望guoluo能繼續(xù)解答。跪拜ing
    二維碼

    掃碼加我 拉你入群

    請注明:姓名-公司-職位

    以便審核進(jìn)群資格,未注明則拒絕

    關(guān)鍵詞:PrxMatch filename Pattern RXPARSE varying 查詢 下載 網(wǎng)頁

    沙發(fā)
    823954913 發(fā)表于 2013-6-3 11:02:16 |只看作者 |壇友微信交流群
    同求,用post得到網(wǎng)頁的數(shù)據(jù)。
    藤椅
    鄧貴大 發(fā)表于 2013-6-4 12:18:52 |只看作者 |壇友微信交流群
    Be still, my soul: the hour is hastening on
    When we shall be forever with the Lord.
    When disappointment, grief and fear are gone,
    Sorrow forgot, love's purest joys restored.
    板凳
    swu350407 發(fā)表于 2013-6-11 23:58:29 |只看作者 |壇友微信交流群
    鄧貴大 發(fā)表于 2013-6-4 12:18
    http://support.sas.com/resources/papers/proceedings12/121-2012.pdf
    https://groups.google.com/forum/ ...
    謝謝。但是網(wǎng)頁打不開?需要翻墻嗎
    報紙
    swu350407 發(fā)表于 2013-6-12 00:02:13 |只看作者 |壇友微信交流群
    swu350407 發(fā)表于 2013-6-11 23:58
    謝謝。但是網(wǎng)頁打不開?需要翻墻嗎
    謝謝?梢韵螺d了
    地板
    swu350407 發(fā)表于 2013-6-12 00:03:07 |只看作者 |壇友微信交流群
    鄧貴大 發(fā)表于 2013-6-4 12:18
    http://support.sas.com/resources/papers/proceedings12/121-2012.pdf
    https://groups.google.com/forum/ ...
    謝謝,可以下載。但是論壇還是打不開
    7
    swu350407 發(fā)表于 2013-6-12 00:17:51 |只看作者 |壇友微信交流群
    鄧貴大 發(fā)表于 2013-6-4 12:18
    http://support.sas.com/resources/papers/proceedings12/121-2012.pdf
    https://groups.google.com/forum/ ...
    用x “curl http://...."會出錯?是不是9.3不支持?
    8
    鄧貴大 發(fā)表于 2013-6-12 02:01:27 |只看作者 |壇友微信交流群
    cURL is a 3rd party utility that needs to be installed.
    http://curl.haxx.se/download.html
    With cURL, it's just as easy as
    1. filename curl pipe 'curl -d NeedCompleteTime2=20111111 http://www.ctg.com.cn/inc/sqsk.php';

    2. data _null_;
    3.         infile curl;
    4.         input;
    5.         put _infile_;
    6. run;
    復(fù)制代碼
    Substitute 20111111 with any date you may want.
    Be still, my soul: the hour is hastening on
    When we shall be forever with the Lord.
    When disappointment, grief and fear are gone,
    Sorrow forgot, love's purest joys restored.
    9
    swu350407 發(fā)表于 2013-6-12 22:12:58 |只看作者 |壇友微信交流群
    鄧貴大 發(fā)表于 2013-6-12 02:01
    cURL is a 3rd party utility that needs to be installed.
    http://curl.haxx.se/download.html
    With cUR ...
    非常感謝您的指點。
    10
    鄧貴大 發(fā)表于 2013-6-12 22:37:31 |只看作者 |壇友微信交流群
    swu350407 發(fā)表于 2013-6-12 22:12
    非常感謝您的指點。
    Sorry I goofed. There's actually a PROC HTTP been added since SAS 9.2.
    So you don't need cURL any more.
    http://support.sas.com/documenta ... un1ru90xy4s36oa.htm
    1. filename in "in.txt";
    2. filename out "out.txt";
    3. data _null_;
    4.    file in;
    5.    input;
    6.    put _infile_;
    7. datalines4;
    8. NeedCompleteTime2=2011-11-11
    9. ;;;;

    10. proc http in=in out=out url="http://www.ctg.com.cn/inc/sqsk.php"
    11.      method="post" ct="application/x-www-form-urlencoded";
    12. run;
    復(fù)制代碼
    If you don't have SAS 9.2+, here's a vanilla version
    1. filename REMOTE socket "www.ctg.com.cn:80" termstr=LF;
    2. data _null_;
    3.         infile REMOTE;
    4.         file REMOTE;
    5.         name_value_pairs = 'NeedCompleteTime2=2011-11-11';
    6.         len = length (name_value_pairs);
    7.         put
    8.                 "POST /inc/sqsk.php HTTP/1.1"
    9.                 / "Host: www.ctg.com.cn"
    10.                 / "Content-Length: " len
    11.                 / "Content-Type: application/x-www-form-urlencoded"
    12.                 // name_value_pairs
    13.                 /
    14.                 ;
    15.         file 'out.txt';
    16.         putlog / '---- RESPONSE ----' /;
    17.         do until(index(lowcase(_infile_), '</html>'));
    18.             input;
    19.             put _infile_;
    20.         end;
    21.         stop;
    22. run;
    復(fù)制代碼
    Be still, my soul: the hour is hastening on
    When we shall be forever with the Lord.
    When disappointment, grief and fear are gone,
    Sorrow forgot, love's purest joys restored.
    您需要登錄后才可以回帖 登錄 | 我要注冊

    本版微信群
    加好友,備注cda
    拉您進(jìn)交流群

    京ICP備16021002-2號 京B2-20170662號 京公網(wǎng)安備 11010802022788號 論壇法律顧問:王進(jìn)律師 知識產(chǎn)權(quán)保護(hù)聲明   免責(zé)及隱私聲明

    GMT+8, 2024-12-23 21:31