duanqi5333 2015-08-12 23:01
浏览 44
已采纳

如何在PHP中从Regex获取变量?

How can I get only the Name/Variable which is "regexed"? Like in this case the $1 or $0 in the anchor's href?

When I try to echo the $1 or $0 I get a Syntax Error because it's a Number. At the Moment the $str is a whole Text.

function convertHashtags($str){
    $regex = "/#+([a-zA-Z0-9_]+)/";
    $str = preg_replace($regex, '<a href="hashtag.php?tag=$1">$0</a>', $str);
    return($str);
    }
  • 写回答

1条回答 默认 最新

  • dounei5721 2015-08-12 23:07
    关注

    Simple use preg_match before preg_replace, eg

    preg_match($regex, $str, $matches);
    

    Assuming the pattern actually matched, you should have the results in $matches[0] and $matches[1] which are the equivalent of $0 and $1 in the replace string.

    FYI, the $n tokens in the replacement string are not variables though I can see how that can be confusing. They are simply references to matched groups (or the entire match in the case of $0) in the regex.

    See http://php.net/manual/function.preg-replace.php#refsect1-function.preg-replace-parameters


    To find multiple matches in $str, use preg_match_all(). It's almost the same only it populates $matches with a collection of matches. Use the PREG_SET_ORDER flag as the 4th argument to make the array workable. For example...

    $str = ' xD #lol and #testing';
    $regex = '/#(\w+)/';
    preg_match_all($regex, $str, $allMatches, PREG_SET_ORDER);
    print_r($allMatches);
    

    produces...

    Array
    (
        [0] => Array
            (
                [0] => #lol
                [1] => lol
            )
    
        [1] => Array
            (
                [0] => #testing
                [1] => testing
            )
    
    )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀