我在这里有一个独特的东西,在一个句子中,我有两个大写字母。像这样:
AA电池。 CA的力量。 WV编年史。
等
我如何剥离那些大写字母?谢谢!
答案 0 :(得分:2)
这里你去了
preg_match_all("/\b([A-Z]{2})\b/",$string,$matches);
/*
--matches
[0] => The AA batteries. The CA power. The WV chronicles.
[1] => AA
[2] => CA
[3] => WV
*/
https://regex101.com/r/rT3jK7/1
编辑 - 编辑使用preg_match_all而不是preg_match