Search:

Type: Posts; User: dev73

Search: Search took 0.06 seconds.

  1. Re: Sorting lowercase strings before uppercase strings

    Thanks Norm. I agree with the rule.
  2. Thread: Please help me

    by dev73
    Replies
    43
    Views
    3,112

    Re: Please help me

    See if this helps:


    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.PrintWriter;

    public class Format {
    public static void main(String[]...
  3. 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 3 of 3