In PHP, how do I get only upper case sequences from the string?
For example, how can I get from:
abcDEF GHi jklm
only:
DEF GH
|
|
To find matches:
To remove all "wrong" stuff:
|
|||
|
use this regular expression |
|||||||
|
|
A string of upper case letters can be matched with However, if you specifically want words that are only upper case, then you need to add a word boundary marker to each end of the expression. This is So your expression would look like this:
Hope that helps. |
|||||||
|