I'd like to be able to count the amount of upper case characters in a string.
Some hints or solution to save me an hour (or 2 or 3), please...
Would this be the right thinking?
Am I using the right flag?
If correct, then how best to count the number of useful array values?
Thanks!
Some hints or solution to save me an hour (or 2 or 3), please...
Would this be the right thinking?
[ autoit ]
$array = StringRegExp( $text, "[A-Z]", 3 ) ; or...? $array = StringRegExp( $text, "[[:upper:]]", 3 )
Am I using the right flag?
If correct, then how best to count the number of useful array values?
Thanks!