douwen8424 2015-04-07 22:55
浏览 29
已采纳

正则表达式不在PHP中的括号之间打印字符串

I have researched this up and down am can't figure out what I'm doing wrong. I have the following variable which I get from $_GET.

$monitorname = $_GET['monitorname'];

which should look something similar to: 985_Sands-Road(54dd14d80bd5f777184cb9c8), in the URL it actually looks like:

index.php?monitorname=985_Sands-Road%26%2340%3B54dd14d80bd5f777184cb9c8%26%2341%3B&alertType=0"

I'm trying to use Regex to get the text between the parentheses, here is my regex code:

preg_match('/\(([^)]+)\)/', $monitorname, $match);
$id = $match[1];
echo $id;

However no matter what I do, it won't echo the ID. What can I look at and fix in this? It must be noted that when I save the string explicitly as a variable it works fine:

$text = '985_Sands-Road(54dd14d80bd5f777184cb9c8)';
preg_match('/\(([^)]+)\)/', $text, $match);
$id = $match[1];
echo $id;

Thanks so much in advance

  • 写回答

2条回答 默认 最新

  • douchuntang2827 2015-04-07 23:15
    关注
    $monitorname = $_GET['monitorname'];
    $src=array('(',')');
    $rep=array('(',')');
    $monitorname=str_replace($src,$rep,$monitorname);
    
    //now your code
    
    preg_match('/\(([^)]+)\)/', $monitorname, $match);
    $id = $match[1];
    echo $id;
    

    My first thought was urldecode() too, but it doesn't work in this case...

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程