$content = '1111111
2222222<\/td>3$'; //' \\\\\/ ' 第1个'\'转义字符串的第2个'\',字符串为'\' //第3个'\'转义第4个'\',相当于 字符串 '\' //第5个'\'转义第4个'/',相当于 字符串 '/' //字符合起来为'\\/' 两个'\\' 正则表达式看做'\' $pattern = '/ ([0-9]{7,})<\\\\\/td>\d\\$$/'; 上面方法out了,使用\Q \E,具体东西看评论
1.test.php
<?php
$content = '1111111<td>2222222<\/td>3$';
//'\\\\\/' 第1个'\'转义字符串的第2个'\',字符串为'\'
//第3个'\'转义第4个'\',相当于字符串'\'
//第5个'\'转义第4个'/',相当于字符串'/'
//字符合起来为'\\/' 两个'\\' 正则表达式看做'\'
$pattern = '/<td>([0-9]{7,})<\\\\\/td>\d\\$$/';
$result = preg_match_all($pattern, $content, $match_result);
if($result)
print_r($match_result);
else
echo("not match"); Nach dem Login kopieren
2.php代码
$content = '1111111<td>2222222<\/td>3$';
$pattern = "!<td>(\d{7,})<\Q\/\Etd>\d\Q$\E!";
$result = preg_match_all($pattern, $content, $m);
if($result)
print_r($m);
else
echo("not match"); Nach dem Login kopieren
3.output.txt
Array
(
[0] => Array
(
[0] => <td>2222222<\/td>3$
)
[1] => Array
(
[0] => 2222222
)
) Nach dem Login kopieren
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
2024-11-13 09:42:17
2024-11-13 09:42:16
2024-11-11 12:24:02
2024-10-22 13:03:13
2024-10-22 11:44:46
2024-10-18 17:59:07
2024-10-18 17:52:44
2024-10-18 14:43:47
2024-10-15 12:00:09
2024-10-15 11:53:15