How to find repeated sub string in a main string using VBScript?
For example, if the string is
str = "Google mail, Google Maps, Google drive, Google music, Google play, Google office"
I need the the substring which is repeated in above string. Also its count.
Thanks
do ... loopwithInstrInstr(str,"Google")this is what you say, but i don't want to pass 'google' explicitly..It should automatically find the repeated word.