我想从字符串中获取带有数字的特定单词,例如
ABC312 is the string I want to filter...
或
ABC 312 is the string I want to filter...
从上面的字符串我想得到" ABC"以下" 312" (在上面的字符串ABC将始终保持不变,它可以不区分大小写,但数字会改变...)它可以是ABC143,ABC001,ABC311,ABC145等。
答案 0 :(得分:0)
preg_match( '/ABC\s*[0-9]+/' );