dongpai9986 2013-11-15 09:34
浏览 78
已采纳

在两个单词之间提取一个字符串

I want to extract hash from string below which is e5e1af55bad959546ec7608cc8685fe67bc5426e

$word1 = 'btih:';
$word2 = '&dn';
$magnet = "[magnet:?xt=urn:btih:e5e1af55bad959546ec7608cc8685fe67bc5426e&dn=The+Deadly+Game+2013+DVDRip+XviD-EVO+&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&tr=udp%3A%2F%2Ftracker.istole.it%3A6969&tr=udp%3A%2F%2Ftracker.ccc.de%3A80&tr=udp%3A%2F%2Fopen.demonii.com%3A1337]";
if(preg_match('/'.preg_quote($word1).'(.*?)'.preg_quote($word2).'/is', $magnet, $match)){
$upper = strtoupper($match['1']);
$generated = "http://torrage.com/torrent/".$upper.".torrent";
}

in above code, the hash are located between btih: and &dn can i know why my code doesnt work?

  • 写回答

1条回答 默认 最新

  • duanhuan1147 2013-11-15 09:35
    关注

    You can use this lookaround based regex:

    '/(?<=btih:)(.+?)(?=&dn=)/'
    

    This means capture a string which is preceded by bith: and followed by &dn=

    Alternatively you can avoid lookbehind and use:

    '/:btih:\K(.+?)(?=&dn=)/'
    

    Here \K is used to reset matched pattern.

    As an another alternative you can avoid lookahead also and use:

    '/:btih:(.+?)&dn=/'
    

    And use matched group #1

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 描述一下元器件的基本功能,pcba板的基本原理
  • ¥15 STM32无法向设备写入固件
  • ¥15 使用ESP8266连接阿里云出现问题
  • ¥15 BP神经网络控制倒立摆
  • ¥20 要这个数学建模编程的代码 并且能完整允许出来结果 完整的过程和数据的结果
  • ¥15 html5+css和javascript有人可以帮吗?图片要怎么插入代码里面啊
  • ¥30 Unity接入微信SDK 无法开启摄像头
  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan