繁体   English   中英

PHP 正则表达式匹配字符串中的所有单个字母后跟数字值

[英]PHP regex to match all single letters followed by numeric value in string

我正在尝试为以下类型的字符串运行正则表达式:一个大写字母后跟一个数值。 该字符串可以由多个这些字母-数字-值组合组成。 这里有一些例子和我预期的 output:

A12B8Y9CC10
-> output [0 => 12, 1 => 8, 2 => 9] (10 is ignored, because there are two letters)
V5C8I17
-> output [0 => 5, 1 => 8, 2 => 17]
KK18II9
-> output [] (because KK and II are always two letters followed by numeric values)
I8VV22ZZ4S9U2
-> output [0 => 8, 1 => 9, 2 => 2] (VV and ZZ are ignored)
A18Z12I
-> output [0 => 18, 1 => 12] (I is ignored, because no numeric value follows)

我尝试使用 preg_match 通过以下正则表达式来达到此目的: /^([AZ]{1}\d{1,)$/

但它没有给出预期的 output。 你能帮我吗,如何解决这个问题?

谢谢和最好的问候!

您可以使用preg_match_allphp中使用此正则表达式:

preg_match_all('/(?<![a-zA-Z])[a-zA-Z]\K\d+/', $string, $matches);

导致数组$matches[0]返回所有匹配项。

正则表达式演示

正则表达式详细信息:

  • (?<![a-zA-Z]) :确保我们在当前 position 之前没有字母
  • [a-zA-Z] : 匹配一个字母
  • \K : 重置比赛信息
  • \d+ :匹配 1+ 个数字

另一种变体可能是使用SKIP FAIL来跳过不符合条件的匹配项。

[A-Z]{2,}\d+(*SKIP)(*FAIL)|[A-Z](\d+)

解释

  • [AZ]{2,}\d+匹配 2 个或多个大写字符 AZ 和 1+ 个数字
  • (*SKIP)(*FAIL)使用 SKIP FAIL 避免匹配
  • | 或者
  • [AZ](\d+)匹配单个字符 AZ 并在第 1 组中捕获一位或多位数字

正则表达式演示| Php 演示

匹配是第一个捕获组。

$pattern = '/[A-Z]{2,}\d+(*SKIP)(*FAIL)|[A-Z](\d+)/';
preg_match_all($pattern, $string, $matches);
print_r($matches[1]);

或者在anubhava的答案中使用\K

[A-Z]{2,}\d+(*SKIP)(*FAIL)|[A-Z]\K\d+

正则表达式演示| php 演示

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM