try out the below code!

Dim
testString As String = "this is for testing the linq query."
Dim count As Integer = (From s In testString.ToCharArray Where s = "i" Select s).Count
thanks





-Shinu