Click here to Skip to main content
15,886,788 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
How can I count the number of occurrences of a character in the text string and prints that number in the message box?
Ex :

" Words Inside Words Words Inside Words "

How many occurrences of the letter S in this sentence ?
Posted
Comments
Sergey Alexandrovich Kryukov 7-Dec-12 21:37pm    
Abuse!
--SA

VB
Dim s As String = " Words Inside Words Words Inside Words "
MessageBox.Show(s.ToCharArray.Count(Function(ch) ch = "s"c).ToString)
 
Share this answer
 
Comments
ridoy 9-Dec-12 0:57am    
+5
6.
—SA
Answering this weird question requires short text which I'm trying to create adding this insignificant comment.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900