Home Answers Viewqa Java-Beginners Java String searching.

 
 


ratna rathor
Java String searching.
1 Answer(s)      a year ago
Posted in : Java Beginners

How to search a string in given String array?

View Answers

May 18, 2012 at 2:32 PM


import java.util.Scanner;

public class StringSearch {
    public static void main(String[] args) {
        String city[] = { "Delhi", "Lucknow", "Mumbai", "Kanpur" };
        String userCity;
        Scanner scanner = new Scanner(System.in);
        System.out.println("Enter city name you want to search in list: ");
        userCity = scanner.next();
        int i = 0;
        int flag = 0;
        while (i < city.length) {

            if (userCity.equalsIgnoreCase(city[i])) {
                flag = 1;
                break;
            } else {
                flag = 0;
                i++;
            }
        }
        if (flag == 1) {
            System.out.println("City found");
        } else {
            System.out.println("Try another city");
        }
    }
}

Description: We have taken a String array of city.User will input its city and for searching we used userCity.equalsIgnoreCase(city[i])). EqualsIgnoreCase() method is used to search without caring of case. you can also use equals() method if string case is considered.









Related Pages:
Java String searching.
Java String searching.  How to search a string in given String array... static void main(String[] args) { String city[] = { "Delhi", "Lucknow", "Mumbai", "Kanpur" }; String userCity; Scanner scanner = new
searching a text string in file - Java Beginners
searching a text string in file  code to match a string in a file that is already mentioned in java code.if the string matches any part of a string that whole string is printed
Sorting and Searching
help me with this A program is required to ask users to rate the Java... java.util.*; class RateJava { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("Rate Java(0-10
searching string
searching string   how to write a program for searching a string...{ public static void main(String[] args){ Scanner input=new Scanner(System.in); System.out.println("Enter string: "); String str = input.nextLine
Java Sorting and Searching
Java Sorting and Searching   If anyone could help me with this I would be really thankful! Write a program that stores the names of these artists in a String array. The program should prompt the user to enter the name
searching for strings in a file
searching for strings in a file  how can i search of a person and display the other details associated with the name using java gui window?  ...*; class Book{ int bookid; String title; String author; Book(int
Searching English words in a string
Searching English words in a string  My task is to find English words and separate them from a string with concatenated words..for example...(String[]args){ String st="AhdgdjHOWAREgshshYOUshdhfh"; char ch
searching technique
searching technique  Hi, i need any searching technique in java to search the data and give the all possible data by links
searching problem
searching problem  how we can make a code in core java for searching in hard disk? i have to make an antivirus as my minor project , so i have need this type code to search the virus in hard disk
searching problem
searching problem  how we can make a code in core java for searching in hard disk? i have to make an antivirus as my minor project , so i have need this type code to search the virus in hard disk
Insertion, sorting and searching in array
to perform searching and sorting in array. In the java code given below we have...; } Insertion, sorting and searching in array   ... ArraySortSearch { public static void main(String args[]) throws Exception
Searching - Hibernate
{ public static void main(String[] arg){ Session session = null; try...(); String SQL_QUERY = "from RecordInformation as record where record.userid LIKE... RecordInformation { private String userid; private String lastname; private String
Searching operation in JAva
Searching operation in JAva  Sir, I have made a project for the Dispatch section of my office. I have to search for letters that are dispatched on a particular date. Now there are thousands of letters dispatched on a particular
Searching operation in JAva
Searching operation in JAva  Sir, I have made a project for the Dispatch section of my office. I have to search for letters that are dispatched on a particular date. Now there are thousands of letters dispatched on a particular
Searching operation in JAva
Searching operation in JAva  Sir, I have made a project for the Dispatch section of my office. I have to search for letters that are dispatched on a particular date. Now there are thousands of letters dispatched on a particular
Searching operation in JAva
Searching operation in JAva  Sir, I have made a project for the Dispatch section of my office. I have to search for letters that are dispatched on a particular date. Now there are thousands of letters dispatched on a particular
Searching with alphabetical order - Java Beginners
Searching with alphabetical order  Hi, I want to this please help me Steps:- 1:-I have a one form of name text box with two button. 2:-user input in name text box(alphabetical order)search all fields from
Searching with alphabetical order - Java Beginners
Searching with alphabetical order  Hi, please understood my problem and send write code its very urgent I a write once again. Steps.... 2:-User input in the name text box(searching alphabetical order) name
Searching a tex on a table in java! - Java Beginners
Searching a tex on a table in java!  i have a table which contains several data. using a textfield the item hat i search must be selected... the problem. For more information on Java visit to : http://www.roseindia.net
string
string   difference detween "public static void main (String[] args) " and "public static void main (String args[])" in java but it executes both ,in java which one is legal   The only difference is style, where
string
string  java prgm to find total occurence of a given string pattern in a sentence
string
string  java prgm to find total occurence of a given string pattern in a sentence
String
String  How to Convert sunnapu gopal to Sunnapu Gopal in java using String
Java String Occurrence in a String
Java String Occurrence in a String   ... then it will start searching for the string with the help of the method base.indexOf... of a String in another String. Here we have already taken a String
string
string  a java program using string function to input any string... ArrangeStringAlphabetically { public static void main(String[] args) { Scanner input=new Scanner(System.in); System.out.print("Enter string
string
string  a java program using string function that computes your... links: http://www.roseindia.net/tutorial/java/core/printInitials.html http://www.roseindia.net/answers/viewqa/Java-Beginners/13383-print-initials.html
string
string  how do i extract words from strings in java???   Hi... ExtractWords { public static void main(String[] args) { Scanner input=new Scanner(System.in); System.out.print("Enter String
string
string  a java program to input a string and display the string...*; import java.io.*; public class FirstLetter{ public static String capitalizeFirstLetter( String str ) { final StringTokenizer st = new StringTokenizer( str
string
and also displaying that contain word? Like I want to find "a" in the string "This is example of java Programme" and also display word that contain "a" character.   Here is a java example that accepts a sentence from the user
string
string  program for String reverse and replace in c,c++,java e.g.Input:10,20,hello output:hello;20;10   Hi Friend, Try the following java...(String[] args) { String array[]=new String[5]; Scanner input
string
string  how we conunt the no. of words in java without using in pre defined method in java
string
string  a java program to replace all matching substrings
string
string  a java program using string function and access modifiers to automate the insurance company which will have to manage the information about policy holders Data Members: 1)Policy No 2)Name of policy holder 3)Address 4
Summary - String
Java: Summary - String String Concatenation Following table shows how to perform the string concatination operations. "abc" + "def... Searching -- Note: All "indexOf" methods return -1 if the string/char
Searching an Element in the given XML Document
Searching an Element in the given XML Document  ...;/Employee> </Employee-Detail> Here is the Java File...;class SearchElement{   public static void main(String
searching books
searching books  how to write a code for searching books in a library through jsp
file searching
file searching  i need a prog for searching inside a text file after evry 1 min to find does it hav any new entry
searching the data
searching the data  respected sir , i am making the desktop application , so how can i search the data which are stored in the mysql databses through click the button and display in jtable through netbeans dynamically
Java string
Java string  Strings are immutable.But String s="Hello"; String s1=s+"World"; S.O.P(s1); means printing "Hello World". How
String lastIndexOf(String str, int fromIndex)
of String class in Java. The description of the code is given below for the usage... the lastindexOf(String str, int fromIndex) method through the following java..., searching backward starting at the specified index within the string . Here
Java String
Java String  You are given two strings S1 and S2,Delete from S2 all those characters which occur in s1 also and create a clean S2 with the relevant characters deleted..write a pgm for this..pls send as soon as possible Thank you
ArrayList
++) { System.out.println((String)(iter.get(i))); } Sorting and Searching Call... Java Notes: ArrayList java.util.ArrayList allows for expandable arrays...). An ArrayList has methods for inserting, deleting, and searching
searching inside a file for details
searching inside a file for details  i created a file with name,country,state etc...when i'm searching for the name, i have to get other details like country,state etc...please do help
Java String
Java String       In this section, you will learn about the java string. Java String is a set... to a string literal in the object stream. The Java String object contains a sequence
Java String - Java Beginners
Java String  How to seperate the string into characters.  there is a method called getChars() in String class,plz use that and separate into characters so plz verify the String api for related questions 
string - Java Beginners
string in java interview questions  What is string in java? Interview questions
string manipulation
string manipulation  Write a program in java and accept 10 strings form the user. store them in an array. then find the string with the maaximum length and print
String in Java - Java Beginners
]); } } } ---------------------------------------------------- I am sending simple code of String array. If you are beginner in java...String in Java  hiiiii i initialise a String array,str[] with a size... in advance   Hello Antony Insted Using String Array Use StringBuffer
string prgm
string prgm  write a java program which read a sentence and print occurence of each vowels in it seperatly
Searching for Code - JSP-Servlet
JSP, Servlet Searching for Code  Hi, i am looking for a jsp servlet code examples for the search function in my application.Thanks

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.