Search:

Type: Posts; User: dev73

Search: Search took 0.09 seconds.

  1. Re: Sorting lowercase strings before uppercase strings

    Thanks Norm. I agree with the rule.
  2. Re: Sorting lowercase strings before uppercase strings

    public int compare(String arg0, String arg1) {
    for(int i=0;i<arg0.length() && i<arg1.length();i++) {
    if((arg0.charAt(i) > 64 && arg0.charAt(i) < 91) || (arg0.charAt(i) > 97 && arg0.charAt(i) <...
Results 1 to 2 of 2