What is the best way to get all character positions of a search phrase for a given string of text?
For example, say we have "the red cat is watching the red car stopped at the red stop sign"
INPUT: "red" OUTPUT: [5, 29, 52]
|
What is the best way to get all character positions of a search phrase for a given string of text? For example, say we have INPUT: "red" OUTPUT: [5, 29, 52] |
|||
|
|
|
You can use the indexOf method of the string class:
|
|||
|
|