fork download
  1. URLの変換: 複数行
  2. s#http://(.+?)/test/read\.cgi/(.+?)/(\d+)/?.*#http://l...content-available-to-author-only...u.com/thread/$1/$2/$3/#
  3.  
  4. 前処理:
  5. # スレタイ補正
  6. s#(<title>)(.*?) \| \S*?(</title>)#$1$2$3#ik
  7. # ガラガラを適当に除去
  8. s#<script(.|\s)*?</script>##igk
  9. s#<style(.|\s)*?</style>##igk
  10. # ニュー速等のアイコンを2ch形式に補正(663さんのものをアレンジ)
  11. s#<img src="http://c...content-available-to-author-only...u.com/(img.2ch.net/ico/.+?)">#sssp://$1#igk
  12. # 「~回発言」を取り除く(663さんのものをアレンジ)+ID周りの変更を反映
  13. s#<a href=.* class="id_search_btn">(ID)</a>(:)<a [^>]+>(.*?)</a>((.|\s)*?) ?\[.*?\]#$1$2$3$4#igk
  14. # 後ろガラガラの除去(ちょっと修正)
  15. s#<tr(.|\s)*?</tr>##igk
  16. # <br/>タグに対応してない専ブラへの対応
  17. s#<br/>#<br>#igk
  18.  
  19. 変換結果式: ※メール欄逆転
  20. $2<>$3<>$4<> $5 <>
  21.  
  22. 正規表現:
  23. m#<article id=\"([^\"]+).*<span class=\"n?em\"><b>(.+?)</b></span>\[(.*?)\] :(.*?)<div class="comment"> (.*?)</div>#imk
  24.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty