Search:

Type: Posts; User: aussiemcgr

Search: Search took 0.08 seconds.

  1. Replies
    4
    Views
    3,616

    Re: Nested Looping to find if Strings equal

    On my crazy slow work computer (takes about 40 seconds to open a new tab in IE and 40 seconds to open the excel sheet I'm working on) it takes me 313 milliseconds to run the code I have now.

    I...
  2. Replies
    4
    Views
    3,616

    Re: Nested Looping to find if Strings equal

    I revised it to this:


    for(int x=0;x<dataArr.length-1;x++)
    {
    String tempRName = dataArr[x].Name;
    int indexAt = RevNames.indexOf(tempRName);
    if(indexAt == -1)...
  3. Replies
    4
    Views
    3,616

    Nested Looping to find if Strings equal

    Ok, I'm doing a huge project, but I'll cut it down to my current issue.

    This project is designed to write a value to an excel sheet using the SmartXLS library.

    I need the most efficient way of...
Results 1 to 3 of 3