捕获子组 – 永夜 https://www.shuijingwanwq.com 没有不值得去解决的问题,也没有不值得去学习的技术! Tue, 08 Nov 2022 02:34:27 +0000 zh-Hans hourly 1 https://wordpress.org/?v=7.0 在 PHP 中正则表达式匹配规则的调整(允许某一个捕获子组为空) https://www.shuijingwanwq.com/2022/11/08/7132/ https://www.shuijingwanwq.com/2022/11/08/7132/#respond Tue, 08 Nov 2022 02:34:12 +0000 https://www.shuijingwanwq.com/?p=7132 浏览量: 74 1、现有的 PHP 代码实现如下


// $va = 'internal://all_collectionss/';
$va = 'internal://all_collectionss/1';
$matches = [];
if (preg_match('#internal://([^/]+)s/([^/]+)#', $va, $matches)) {
	$resource = strtolower($matches[1]);
	$resourceId = $matches[2];
}


2、打开:https://regex101.com/ ,匹配成功,结果如下。如图1
打开:https://regex101.com/ ,匹配成功,结果如下

图1



Match 1 0-29	internal://all_collectionss/1
Group 1 11-26	all_collections
Group 2 28-29	1


3、现在期望 internal://all_collectionss/ 也能够匹配到。提示:您的正则表达式与主题字符串不匹配。如图2
现在期望 internal://all_collectionss/ 也能够匹配到。提示:您的正则表达式与主题字符串不匹配

图2



Your regular expression does not match the subject string.
Try launching the debugger to find out why.


4、正则表达式中具有特殊含义的字符称之为元字符,常用的元字符有:* 量词,0 次或多次匹配;+ 量词,1 次或多次匹配。由于最后的 / 后面允许为空,则应该将 + 调整为 *。#internal://([^/]+)s/([^/]*)# 两种情况皆能够匹配成功。如图3、图4
internal://all_collectionss/ 匹配成功

图3

 
internal://all_collectionss/1 匹配成功

图4

5、最终的 PHP 代码实现如下


// $va = 'internal://all_collectionss/';
$va = 'internal://all_collectionss/1';
$matches = [];
if (preg_match('#internal://([^/]+)s/([^/]*)#', $va, $matches)) {
	$resource = strtolower($matches[1]);
	$resourceId = $matches[2];
}


]]>
https://www.shuijingwanwq.com/2022/11/08/7132/feed/ 0