Count how many specific characters in string
Try this:
len(yourString) - len(replace(yourString, "@", ""))
Response.write ubound(split(str,"@"))
is enough for counting the occurance of a specific character
Try this:
len(yourString) - len(replace(yourString, "@", ""))
Response.write ubound(split(str,"@"))
is enough for counting the occurance of a specific character