Search:

Type: Posts; User: entwicklerin

Search: Search took 0.15 seconds.

  1. Re: Traverse through the one String and find it contains the other String

    if one enters a phone number it should give the corresponding words from dictionary
  2. Re: Traverse through the one String and find it contains the other String

    This is my code,Dictionary is a txt document that contain:
    an
    blau
    Bo"
    Boot
    bo"s
    da
    Fee
    fern
    Fest
  3. Re: Traverse through the one String and find it contains the other String

    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.LineNumberReader;
    import java.util.ArrayList;
    import java.util.Scanner;
    import...
  4. Re: Traverse through the one String and find it contains the other String

    Please help me out
  5. Re: Traverse through the one String and find it contains the other String

    it returns phWordsFromDict = "" i.e. an empty String
  6. Re: Traverse through the one String and find it contains the other String

    public static String getDictPhoneWord (String prefix) {

    System.out.println(" :: Inside getDictPhoneWord :: prefix = "+prefix);
    String current_word = "";
    String phWordsFromDict = "";...
  7. Traverse through the one String and find it contains the other String

    HI,
    I have to write a piece of code in which i have String that can contain a word from a dictionary, that String is named 'prefix' and the dictionary word is current_word,How can i traverse through...
Results 1 to 7 of 7