从字符串中查找具有数字的特定单词

时间:2013-11-26 01:07:14

标签: php preg-match strpos

我想从字符串中获取带有数字的特定单词,例如

ABC312 is the string I want to filter...

ABC 312 is the string I want to filter...

从上面的字符串我想得到" ABC"以下" 312" (在上面的字符串ABC将始终保持不变,它可以不区分大小写,但数字会改变...)它可以是ABC143,ABC001,ABC311,ABC145等。

1 个答案:

答案 0 :(得分:0)

preg_match( '/ABC\s*[0-9]+/' );