Given the string "AABACCCDAC",how do I count the number of times "C" occurs?
My initial thought was to use countif on a SPLIT of the string. But Split won't split on "" -- a null string.
Given the string "AABACCCDAC",how do I count the number of times "C" occurs?
My initial thought was to use countif on a SPLIT of the string. But Split won't split on "" -- a null string.