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).

!7

p-tt {
  centerBigConsole();
  int problems = 0;
  for (int i = 0; i <= 0xFFFF; i++) {
    if ((i % 1000) == 0) print(i);
    char c = (char) i;
    S s = str(c);
    for (int j = 0; j <= 0xFFFF; j++) {
      char c2 = (char) j;
      S s2 = str(c2);
      bool b;
      if ((b = eqic(s, s2)) != eq(toLower(s), toLower(s2))) {
        print("Problem chars " + b + ": " + i + "/" + j + " - " + s + "/" + toLower(s) + " - " + s2 + "/" + toLower(s2));
        ++problems;
      }
    }
  }
  print(n2(problems, "problem char"));
}

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: 337 / 787
Version history: 9 change(s)
Referenced in: [show references]