下一行的预匹配(_M)

2022-07-03 00:00:00 php preg-match

我的文本中有一个模式,我需要为下一行使用preg_Match模式。

Administrative Contact:
xxxx xxxxx

this is like this sometimes :

Admin contact: 
xxxxxx xxxx
or 
admin data:
xxxx xxxx

是否可以为此编写正则表达式? 我需要xxxx xxxx数据

谢谢你们


解决方案

看起来常见的因素有:

  • 以"admin"开头
  • 使用:将标签与数据分开
  • 将数据保存到行尾

在本例中,正则表达式为:

/admin[^:]*:s*(.*)/i

所需数据将在子模式%1中。

相关文章