language: PHP (php 5.4.4)
date: 908 days 20 hours ago
link:
visibility: public
1
2
3
4
5
<?php
        $str = 'oneTwoThreeFour';
        preg_match_all('/[A-Z]?[a-z]+/', $str, $matches);
        print_r($matches[0]);
?>