棘手的大資料處理問題(Regex)

來源:互聯網
上載者:User

前段時間,我採集了四萬多條 壁紙 資料,格式類似下面那樣:

-------------------a123-------------------bakalamanaoapaqar-------------------c111213141516171

因為要導進mysql資料庫,我想要的最終格式是這樣:

a-1a-2a-3b-akb-alb-amb-anb-aob-apb-aqb-arc-1c-11c-21c-31c-41c-51c-61c-71

用sublime text3 搞翻了正則,連正則遞迴都學了 在sublime text3 還是不能實現。
(一個個搞,搞死人,就算用excel也麻煩。)

最後我寫了一個PHP去處理這件事情:

<?php$headPattern  = '-*(\w)';          // 匹配頭$childPattern = '\r\n(\d+|\w+)';    // 匹配身體$pattern   = "/{$headPattern}((?:$childPattern)(?2)*)/";// $pattern   = "/-*(\w)((?:\r\n(\d+|\w+))(?2)*)/";$subject = "-------------------a12345678-------------------bakalamanaoapaqar-------------------c111213141516171";echo preg_replace_callback($pattern, function ($e) use($childPattern) {    // 二次正則匹配    preg_match_all('/' . $childPattern . '/', $e[2], $match);    $result = '';    foreach ($match[1] as $key => $value) {        $result .= $e[1] . '-' . $value . "\n";    }    return $result;}, $subject);

不解析,看代碼。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.