On Tue, Mar 16, 2021 at 7:06 AM Sharan Guhan <shara...@gmail.com> wrote:

> Seems a trivial problem, but unable to find the right imports to do this.. 
> Want to search for a substring in a huge string ( output of a exec.command) 
> and get the index for every occurrence of that substring.  I used Index and 
> LastIndex, both give first and last, but am looking for IndexNext kind of 
> till the last occurrence....
>
> For example : "Hello this is Golang program Golang has a variety of import 
> utilities.I like to code in Golang"
>
> In the above example, I want an API which will return each occurrence of 
> Golang

The API is your keyboard ;-) Joking aside, it's easy to write a loop
that uses Index to find out the first position, slice the string to
remove the occurrence and find another until no more exists.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CAA40n-UdU-674TEL4dFc6bcpiq10pNgsdFM1xy0xyoQcC%2BVU2Q%40mail.gmail.com.

Reply via email to