View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Ron Rosenfeld Ron Rosenfeld is offline
external usenet poster
 
Posts: 5,651
Default Count occurences in string

On Wed, 10 Jun 2009 11:55:02 -0700, Ken wrote:

This should be very simple, but I don't see how to do it without a macro:
How do you count the number of hyphens (for example) in a string?

abc-de-a32-ej2-wkjew-w should give 5
we2-232if should give 1
wekjf2 should give 0


=len(str)-len(substitute(str,"-","")

--ron