Is the indexOf(String) method case sensitive? If so, is there a case insensitive version of it?
|
|
The
|
|||||||||||||||
|
Yes, it is case sensitive:
No, there isn't. You can convert both strings to lower case before calling indexOf:
|
|||||||||||
|
|
Yes, The best way to do case insensivity I have found is:
That will do a case insensitive |
|||
|
|||||||||||||||||||
|
|
Yes, it is case-sensitive. You can do a case-insensitive
Note that toUpperCase may not work in some circumstances. For instance this:
idxU will be 20, which is wrong! idxL will be 19, which is correct. What's causing the problem is tha toUpperCase() converts the "ß" character into TWO characters, "SS" and this throws the index off. Consequently, always stick with toLowerCase() |
||||
|
|
|
Yes, I am fairly sure it is. One method of working around that using the standard library would be:
|
||||
|
|
|
But it's not hard to write one:
|
||||
|
|
|
What are you doing with the index value once returned? If you are using it to manipulate your string, then could you not use a regular expression instead?
|
|||
|
|
|
indexOf is case sensitive. This is because it uses the equals method to compare the elements in the list. The same thing goes for contains and remove. |
|||||||
|