尝试在 php 中使用正则表达式查找标签并获取属性

我在 php 中创建了一个正则表达式来查找 html 行中的标记和属性。它有效,但仅适用于第一个属性而不是重复。以下代码为我提供了第一个属性和值。


'@<barcode(\s([a-z]+)="([^"]+)").*/>@m'

因此,我添加了加号以使其重复,但它不起作用。


'@<barcode(\s([a-z]+)="([^"]+)")+.*/>@m'

添加加号后发生的情况是它只选择最后一个属性和值。


我只需要一个数组中的所有属性和值,所以我想知道我做错了什么。这是我正在搜索的可能的 html。有时并不总是需要属性,所以我必须考虑到这一点。


<barcode type="C128B" height="10" fontsize="0.4" code="testcode" align="L"/>

<barcode type="Hello"/>

<barcode type="Hello" code="balls"/>

<barcode type="C128B" height="10" fontsize="0.7" code="test" align="L"/>

我有一个关于 regex101 的示例来查看问题 https://regex101.com/r/jMdA6S/1


我们当前的应用程序有效,但只能通过重复以下几行


'@<barcode ([a-z]+)="(.*)" ([a-z]+)="(.*)" ([a-z]+)="(.*)" ([a-z]+)="(.*)" ([a-z]+)="(.*)".*/>@m'

这意味着每次我添加一个新属性时,我都必须在正则表达式中添加另一个代码块。我试图避免这种情况,因为我们有时必须添加一个新属性来添加不同的功能。


DIEA
浏览 278回答 3
3回答

慕哥9229398

好吧,即使有一些很好的答案,也没有人能告诉我是否有办法在一个正则表达式中做到这一点,这就是我的问题。但是我不得不屈服并在两个正则表达式中做到这一点。我试图避免两个正则表达式,因为我认为加号应该重复中间部分。第一个正则表达式找到标签,我有一个 getAttributes 函数来获取属性。然后 getAttributes 函数将每个函数放入一个平面数组中供我处理。我给出了一个答案,但即使这个答案也没有真正回答我关于如何在一个正则表达式中做到这一点的问题。但是,我会发布我所做的工作,以防它对其他人有所帮助。Amessihel 和 Maciej Król 都给出了很好的建议,如果这是一个正在建设的新项目,我可能会接受这个建议。但是,我使用了以下代码。<?php$str = '<barcode type="C128B" height="10" fontsize="0.4" code="pdfbarcode_content" align="L"/><barcode href="Hello"/><barcode href="Hello" type="balls"/><barcode type="C128B" height="10" fontsize="0.4"/><barcode type="C128B" height="10" fontsize="0.4" code="test" align="L"/>';function getAttributes($attr){&nbsp;&nbsp;&nbsp; &nbsp; preg_match_all('@(?:([a-z]+)="([^"]+)")+@m', $attr, $matches,PREG_SET_ORDER);&nbsp; &nbsp; $rArray=[];&nbsp; &nbsp; foreach($matches as $line):&nbsp; &nbsp; &nbsp; &nbsp; array_push($rArray,$line[1]);&nbsp; &nbsp; &nbsp; &nbsp; array_push($rArray,$line[2]);&nbsp; &nbsp; endforeach;&nbsp; &nbsp; return $rArray;}function barcode($file){&nbsp; &nbsp; return preg_replace_callback(&nbsp; &nbsp; &nbsp; &nbsp; '@<barcode(.*)/>@m',&nbsp; &nbsp; &nbsp; &nbsp; function($matches) {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo '<pre>'.print_r($matches[1],1).'</pre>';&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo '<pre>'.print_r(getAttributes($matches[1]),1).'</pre>';&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo "-----------------------";&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Here is where I process the array&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return '';&nbsp; &nbsp; },&nbsp; &nbsp; $file);}barcode($str);

慕神8447489

一个好的做法是使用相关的操作工具解析 HTML 内容。对于您的问题,您可以在读取文件时解析(SAX 方法),或者一次加载文件然后访问其内容(DOM 方法)。这是一种执行您需要的方法。如果不需要保留全部内容,我喜欢使用 SAX 方式(广泛基于PHP 官网的XML Element Structure Example ):<?php$file = "data.html"; // your file$depth = array();function startElement($parser, $tagname, $attrs){&nbsp; &nbsp; // For each tag encountered&nbsp; &nbsp; //&nbsp; &nbsp;- $tagname contains the name&nbsp; &nbsp; //&nbsp; &nbsp;- $attrs is an associative array name -> value of the attributes&nbsp; &nbsp; // Add the code below the code to deal with it:&nbsp; &nbsp; echo "<pre>\n";&nbsp; &nbsp; echo "Tags : $tagname\n";&nbsp; &nbsp; echo "Attributes:\n";&nbsp; &nbsp; print_r($attrs);&nbsp; &nbsp; echo "</pre>\n";}// Create the parser$xml_parser = xml_parser_create();// Set element handles for the parser (we just need start element handler,&nbsp;// so the end element is set as FALSExml_set_element_handler($xml_parser, "startElement", FALSE);// Open your fileif (!($fp = fopen($file, "r"))) {&nbsp; &nbsp; die("Oops.");}// Loop reading and parsing the filewhile ($data = fread($fp, 4096)) {&nbsp; &nbsp; if (!xml_parse($xml_parser, $data, feof($fp))) {&nbsp; &nbsp; &nbsp; &nbsp; die("Oops.");&nbsp; &nbsp; }}// Done. Free your parser.xml_parser_free($xml_parser);?>

慕盖茨4494581

您需要/g像这样放在正则表达式的末尾:<barcode(\s([a-z]+)="([^"]+)").*/g>
打开App,查看更多内容
随时随地看视频慕课网APP