Hi,
I searched the forum but did not find anything that would help me on this, so here it is :
I'm tiring to build a list/an array with all the character position of a specific substring in a string. For example, it the following : " mfiduA dkdjfA dkA sd " I would like to create an array which would contains [6, 13, 17], which are all the position of each "A" occurrence in that string.
I basically know how the "Find ( STRING, SUBSTRING, INDEX) works, but I'm only able to use it in a case with a single occurrence of the substring (which would only return a single number).
So is there an other way to return all positions of all occurrence of a substring ?
Thanks !