Is indexOf case sensitive : indexOf lastIndexOf « String « Flash / Flex / ActionScript

Home
Flash / Flex / ActionScript
1.Animation
2.Array
3.Class
4.Data Type
5.Development
6.Function
7.Graphics
8.Language
9.Network
10.Regular Expressions
11.Statement
12.String
13.TextField
14.XML
Flash / Flex / ActionScript » String » indexOf lastIndexOf 
Is indexOf case sensitive
 

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

        var example:String = "Cool. This is a cool as both cool (lowercase) and Cool.";
        
        var search:String = "cool";
        
        traceexample.indexOfsearch ) );


    }
  }
}

        
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.Use offset in lastIndexOf method
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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.