Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

21
LINES

< > BotCompany Repo | #1013283 // Test case-insensitive comparison vs toLower()

JavaX source code (desktop) [tags: use-pretranspiled] - run with: x30.jar

Download Jar. Uses 3874K of libraries. Click here for Pure Java version (5896L/39K).

1  
!7
2  
3  
p-tt {
4  
  centerBigConsole();
5  
  int problems = 0;
6  
  for (int i = 0; i <= 0xFFFF; i++) {
7  
    if ((i % 1000) == 0) print(i);
8  
    char c = (char) i;
9  
    S s = str(c);
10  
    for (int j = 0; j <= 0xFFFF; j++) {
11  
      char c2 = (char) j;
12  
      S s2 = str(c2);
13  
      bool b;
14  
      if ((b = eqic(s, s2)) != eq(toLower(s), toLower(s2))) {
15  
        print("Problem chars " + b + ": " + i + "/" + j + " - " + s + "/" + toLower(s) + " - " + s2 + "/" + toLower(s2));
16  
        ++problems;
17  
      }
18  
    }
19  
  }
20  
  print(n2(problems, "problem char"));
21  
}

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1013283
Snippet name: Test case-insensitive comparison vs toLower()
Eternal ID of this version: #1013283/10
Text MD5: eb13d4679d19979d6aad1feefee05247
Transpilation MD5: 0a22b7f9e21e70e34f955188aefccad7
Author: stefan
Category: javax
Type: JavaX source code (desktop)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-12-31 07:18:53
Source code size: 551 bytes / 21 lines
Pitched / IR pitched: No / No
Views / Downloads: 352 / 823
Version history: 9 change(s)
Referenced in: [show references]