Search:

Type: Posts; User: JavaPF

Search: Search took 0.20 seconds.

  1. Re: longest match Substring between two Strings

    Also, try this:



    public int longestSubstr(String str_, String toCompare_)
    {
    if (str_.isEmpty() || toCompare_.isEmpty())
    return 0;

    int[][] compareTable = new...
  2. Re: longest match Substring between two Strings

    Hello slick & hitesh_frnds,

    Welcome to the Java Programming Forums :D

    slick, there is a good tutorial here:
    ...
Results 1 to 2 of 2