Use offset in lastIndexOf method : indexOf lastIndexOf « String « Flash / Flex / ActionScript






Use offset in lastIndexOf method

 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        var example:String = "This string contains the word cool. Very cool. Yes, cool.";
        
        var index:int =  example.length;
        
        while ( ( index = example.lastIndexOf( "cool", index - 1 ) ) != -1 ) {
          trace( "String contains word cool at index " + index );
        }
    }
  }
}

        








Related examples in the same category

1.Finding Substrings
2.Find all the occurrences of a substring.
3.Use indexOf and lastIndexOf to locate specific string
4.Use indexOf to check the existance of an substring
5.Searching for a Substring
6.Use offset index in indexOf method to search substring
7.Use indexOf( ) in a while statement to get the indices of every occurrence of a substring
8.Use lastIndexOf to search string
9.Is indexOf case sensitive
10.Use the lastIndexOf method to get the file extension name
11.Returns everything before the last period, if any.
12.Use indexOf in while loop to count the instance of a substring