indexof case insensitive java

indexof case insensitive java

Hi,

I have to use the indexOf function on String class in Java. I am looking for indexof case insensitive java example. Share the code with me.

Thanks

View Answers

March 24, 2011 at 1:16 AM

Hi,

You can convert both the string into lowercase and then use indexOf method as shown below:

String s1 = str1.toLowerCase(Locale.US);
String s2 = str2.toLowerCase(Locale.US);
if(s1.indexOf(s2)!=-1){
  System.out.println("String found");
}else{
  System.out.println("String not found");
}

Thanks









Related Tutorials/Questions & Answers:
indexof case insensitive java
indexof case insensitive java  Hi, I have to use the indexOf function on String class in Java. I am looking for indexof case insensitive java... into lowercase and then use indexOf method as shown below: String s1 = str1.toLowerCase
Hibernate Criteria Case Insensitive Search.
Hibernate Criteria Case Insensitive Search.  How to use Case Insensitive Search in Hibernate?   The Case Insensitive ignores the case... class Employee.javaâ??Hibernate uses the Plain Old Java Object (POJO) classes
Advertisements
Case-insensitive ordering using Hibernate Criteria.
Case-insensitive ordering using Hibernate Criteria.  What is Case-insensitive ordering in Hibernate Criteria
Hibernate Criteria Case Insensitive
Hibernate Criteria Case Insensitive The Case Insensitive ignores the case of  the latter. It Selects all the records of the table related to the given... = criteria.list(); An example of Case insensitive is given below please consider
ModuleNotFoundError: No module named 'case_insensitive_dict'
ModuleNotFoundError: No module named 'case_insensitive_dict'  Hi...: No module named 'case_insensitive_dict' How to remove the ModuleNotFoundError: No module named 'case_insensitive_dict' error? Thanks   Hi
ModuleNotFoundError: No module named 'case_insensitive_dict'
ModuleNotFoundError: No module named 'case_insensitive_dict'  Hi...: No module named 'case_insensitive_dict' How to remove the ModuleNotFoundError: No module named 'case_insensitive_dict' error? Thanks   Hi
Case-insensitive equals using Hibernate Criteria.
Case-insensitive equals using Hibernate Criteria.  How to use Case-insensitive equals with Hibernate Criteria?   The Case Insensitive ignores the case of the latter. It Selects all the records of the table related
Case-insensitive search using Hibernate Query Language(HQL).
Case-insensitive search using Hibernate Query Language(HQL).  What is Case-insensitive search using Hibernate Query Language
ModuleNotFoundError: No module named 'odoo10-addon-auth-user-case-insensitive'
ModuleNotFoundError: No module named 'odoo10-addon-auth-user-case-insensitive...: ModuleNotFoundError: No module named 'odoo10-addon-auth-user-case-insensitive' How...-case-insensitive' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'odoo11-addon-auth-user-case-insensitive'
ModuleNotFoundError: No module named 'odoo11-addon-auth-user-case-insensitive...: ModuleNotFoundError: No module named 'odoo11-addon-auth-user-case-insensitive' How...-case-insensitive' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'odoo12-addon-auth-user-case-insensitive'
ModuleNotFoundError: No module named 'odoo12-addon-auth-user-case-insensitive...: ModuleNotFoundError: No module named 'odoo12-addon-auth-user-case-insensitive' How...-case-insensitive' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'odoo12-addon-auth-user-case-insensitive'
ModuleNotFoundError: No module named 'odoo12-addon-auth-user-case-insensitive...: ModuleNotFoundError: No module named 'odoo12-addon-auth-user-case-insensitive' How...-case-insensitive' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'odoo13-addon-auth-user-case-insensitive'
ModuleNotFoundError: No module named 'odoo13-addon-auth-user-case-insensitive...: ModuleNotFoundError: No module named 'odoo13-addon-auth-user-case-insensitive' How...-case-insensitive' error? Thanks   Hi, In your python
Java GUI IndexOf - Java Beginners
Java GUI IndexOf  Hello and thank you for having this great site. Here is my problem. Write a Java GUI application called Index.java that inputs several lines of text and a search character and uses String method indexOf
Java ArrayList indexof() Method
. If no element is present then returns the -1. Example of Java Arraylist indexof() Function import java.util.*; public class List1 { public
String indexOf() method in Java
String indexOf() method in Java In this tutorial we will discuss about indexOf() method in java. indexOf() method which is of string class,  used... for searching a specified character or string, indexOf() and lastIndex(). For example
Java is case sensitive
Java is case sensitive  hello, Why Java is case sensitive?   hii,ADS_TO_REPLACE_1 Java is Platform Independent Language, so its used.... To Differentiate among that huge no of variables,Java is Case Sensitive
Switch Case - Java Interview Questions
Switch Case  int x=100000; switch(x) { case 100000: printf("Lacks"); } output= Lacks I want reason why x matches switch case although range for int is in between something -32678 to +32676. Plz give me ans quickly
Case Java Keyword
Case Java Keyword      ... statement in java program. In other word Case is a java keyword... programming statement case block will not have the implicit ending point. At java
ModuleNotFoundError: No module named 'insensitive-dict'
ModuleNotFoundError: No module named 'insensitive-dict'  Hi, My... named 'insensitive-dict' How to remove the ModuleNotFoundError: No module named 'insensitive-dict' error? Thanks   Hi, In your
Java : String Case Conversion
Java : String Case Conversion In this section we will discuss how to convert a String from one case into another case. Upper to Lower case Conversion : By using toLowerCase() method you can convert any upper case char/String
Java String Case Converter
Java String Case Converter Here we are going to convert lowercase characters to upper case and upper case characters to lower case simultaneously from the given input string. Description of code: Through the following code, we have
indexOf(Objekt o)
indexOf(Objekt o)  I have created a class, which contains 3 parameters; "l", "es1", "es2" public T(float l, float es1, float es2) { } I would then like to create a method, which returns me the index of a specific object
How to integrate IBM case Manager with Java Applicarion(JSP or core java)
How to integrate IBM case Manager with Java Applicarion(JSP or core java)  Dear All, Its really important for me to demonstrate a POC (Proof of Concept) on integrating IBM Case Manager with Java Application. Any small help
String indexOf() Method
the indexOf() method through the following java program. In the program code... String indexOf() Method      ... the indexOf() method of String class. We are going to use indexOf() method of String
Switch case in java
Switch case in java In this section we will learn about switch case in java..., and java, switch case is used . switch  is a selection control mechanism used... will illustrate the use of switch case in java: import java.util.Scanner; public
test case
test case  Hi Can you explain me how to write test case in java. regards kennedy
Switch Case in Java
. Switch statements with String cases are supported in Java SE 7 but the earlier version of Java did not support String in switch/case. Switch statements works... of the constants occurs after the case statements. Otherwise, the statements after
JavaScript indexOf substring
JavaScript indexOf substring... the JavaScript method indexOf(). When this method is called from the string object..._TO_REPLACE_1 <html> <h2>Use of indexOf() method</h2>
String indexOf(String str)
about the indexOf(String str) method through the following java program...:\unique>java StringValue That was the breaking News indexOf... String indexOf(String str)     
Write a java program to display the season given the month using switch case
Write a java program to display the season given the month using switch case  Write a java program to display the season given the month using switch case
Matching Case
Matching Case  Hi, i want some code for matching case from an text file. i.e if i give an query called Java from the user,i need to get an output searching the text file all the names in that without case sensitive
String indexOf(int ch)
the indexOf(int ch) method through the following java program. In the program... String indexOf(int ch)      ... the indexOf(int ch) method of String class. We are going to use indexOf(int ch
How to trim string till indexof the string
How to trim string till indexof the string  how to trim string till indexof the string
Business case
Business case  hii, For which phase of RUP the "business case" for the project established ?   hello,ADS_TO_REPLACE_1 Inception phase of RUP the "business case" for the project established
switch case instead of if else
switch case instead of if else  How to write code in switch case instead of if else in Java
jsf command link navigation case - Java Server Faces Questions
jsf command link navigation case  Hi, in my jsf page i have 2 commandlink tags,then how to write navigation case in faces config.xml tell me as soon... in JSF : "navigation case in faces-config.xml
switch case
switch case  program to input 2 numbers and a choice.Using switch case we need to perform all the mathematical operation.Print a suitable error message if the choice is wrong
switch case
switch case  program to input 2 numbers and a choice.Using switch case we need to perform all the mathematical operation.Print a suitable error message if the choice is wrong
Hibernate Query Language
query language. HQL is much like SQL  and are case-insensitive, except for the names of the Java Classes and properties. Hibernate Query Language is used
Character Cases Ignoring case sensitiveness in java
Character Cases Ignoring case sensitiveness in java... to compare two strings ignoring case sensitiveness  Java provides the method...:\vinod\Math_package>java CharCompIgnoreCase Character comparation
case study
case study  Chocolate Manufacturer Case Study CDA Company is in the business of manufacturing chocolates. The company delivers various chocolate products like- chocolate bars ,chocolate powder ,chocolate gift box and chocolate
String indexOf(int ch, int fromIndex)
about the indexOf(int ch, int fromIndex) method of String class. We are going to use indexOf(int ch, int fromIndex) method of String class in Java... String indexOf(int ch, int fromIndex)   
uisearchbar case sensitive
uisearchbar case sensitive  uisearchbar case sensitive
String indexOf(String str, int fromIndex)
explanation about the indexOf(String str, int fromIndex) method of String class. We are going to use indexOf(String str, int fromIndex) method of String class in Java... String indexOf(String str, int fromIndex)   
String indexOf method example
.style1 { font-size: medium; } String indexOf() method example:- String class method indexOf() is use to find the starting character position of the substring from the string. The indexOf() method start to search from
junit test case - Java Beginners
UML CASE Tools
UML CASE Tools  What requirements should a UML CASE tool meet
Setting Case Sensitivity in a Regular Expression
): Above code is used for setting the pattern case insensitive because... Setting Case Sensitivity in a Regular Expression  ... the patter is either case sensitive or not. Actually, by default the patter
ModuleNotFoundError: No module named 'case'
ModuleNotFoundError: No module named 'case'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'case' How to remove the ModuleNotFoundError: No module named 'case' error

Ads