Access 2003
Is there a string function that will compute the total number of a particular character within a string without
using a string array and a for loop ?
Private Sub Compute_The_Number_Of_Spaces_Within_A_String
Dim A_String As String
A_String = "Hello There Everybody"
'There a 3 spaces within the A-String
End Sub
Is there a string function that will compute the total number of a particular character within a string without
using a string array and a for loop ?
Private Sub Compute_The_Number_Of_Spaces_Within_A_String
Dim A_String As String
A_String = "Hello There Everybody"
'There a 3 spaces within the A-String
End Sub