=>here is the Simple Program to get the character count in a string using VBScript.
program:
Str="uzumaki naruto"
MsgBox len(Str) - len(replace(Str, "a", ""))
'Note: simply replace the "uzumaki naruto" with your string in quotes and "a" value with the character you want. it will work.
program:
Str="uzumaki naruto"
MsgBox len(Str) - len(replace(Str, "a", ""))
'Note: simply replace the "uzumaki naruto" with your string in quotes and "a" value with the character you want. it will work.