douzhu6149 2015-06-27 09:50
浏览 45
已采纳

PHP - preg_match_all - 有点高级

I need to find specific part of text in string. That text need to have:

  • 12 characters (letters and numbers only)
  • whole string must contains at least 3 digits
  • 3*4 characters with spaces (ex. K9X6 6GM6 LM11)
  • every block from example above must contains at least 1 number
  • words like this, line, spod shouldn't be recognized

enter image description here

So I ended with this code:

preg_match_all("/(?<!\S)(?i:[a-z\d]{4}|[a-z\d]{12})(?!\S)/", $input_lines, $output_array); But it won't works for all of requirements. Of course I can use preg_repace or str_replace and remove all (!,?,#) and in a loop count numbers if there are 4 or more but I wonder if it is possible to do with preg_match_all...

Here is a string to search in:

?K9X6 6GM6 LM11  // not recognized - but it should be
!K9X6 6GM6 LM11  // not recognized - but it should be
K0X6 0GM7 LM12! // not recognized - but it should be
K1X6 1GM8 LM13@ // not recognized - but it should be
K2X6 2GM9 LM14? // not recognized - but it should be
K3X6 3GM0 LM15# // not recognized - but it should be
K4X6 4GM1 LM16* // not recognized - but it should be
K5X65GM2LM17
bla bla bla
this shouldn't be visible
spod also shouldn't be visible
but line below should be!!
K9X66GM6LM11! (see that "!" at the end? Help me with this)

Correct preg_match_all should returns this:

K9X6
6GM6
LM11
K9X6
6GM6
LM11
K0X6
0GM7
LM12
K1X6
1GM8
LM13
K2X6
2GM9
LM14
K3X6
3GM0
LM15
K4X6
4GM1
LM16
K5X65GM2LM17
K9X66GM6LM11

working example: http://www.phpliveregex.com/p/bHX

  • 写回答

1条回答 默认 最新

  • douhua1890 2015-06-27 12:08
    关注

    The following should do the trick:

    \b(?:(?=.{0,3}?\d)[A-Za-z\d]{4}\s??){3}\b
    

    Demo

    • [A-Za-z\d]{4} matches 4 letters/digits
    • (?=.{0,3}?\d) checks there's a digit in these 4 characters
    • \s?? matches a whitespace character, but tries not to match it if possible
    • \b makes sure everything isn't contained in a larger word

    Note that this will allow strings like K2X6 2GM9LM14, I'm not sure whether you want these to match or not.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求解 yolo算法问题
  • ¥15 虚拟机打包apk出现错误
  • ¥30 最小化遗憾贪心算法上界
  • ¥15 用visual studi code完成html页面
  • ¥15 聚类分析或者python进行数据分析
  • ¥15 三菱伺服电机按启动按钮有使能但不动作
  • ¥15 js,页面2返回页面1时定位进入的设备
  • ¥50 导入文件到网吧的电脑并且在重启之后不会被恢复
  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝