View Issue Details

IDProjectCategoryView StatusLast Update
0002762JEDI VCL00 JVCL Componentspublic2005-04-22 08:34
ReporteranonymousAssigned To 
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionopen 
Product Version 
Target VersionFixed in Version 
Summary0002762: Strange stuff with Wide{Upper,Lower}Case
Descriptionvar
  x: widestring;
begin
  x := Uppercase('i');
  Word(x[1]); // Returns 73
  x := WideUpperCase('i');
  Word(x[1]); // Returns 304

  x := LowerCase('I');
  Word(x[1]); // Returns 105
  x := WideLowerCase('I');
  Word(x[1]); // Returns 305
end;

Anyone else seen this?
TagsNo tags attached.

Relationships

related to 0002796 resolvedoutchy JEDI Code Library WideLowerCase('I') = dotless i with HEB language OS setting 

Activities

outchy

2005-04-01 09:30

administrator   ~0006825

Tested with the french charset:

 var
  x: widestring;
begin
  x := Uppercase('i');
  Word(x[1]); // Returns 73
  x := WideUpperCase('i');
  Word(x[1]); // Returns 73

  x := LowerCase('I');
  Word(x[1]); // Returns 105
  x := WideLowerCase('I');
  Word(x[1]); // Returns 105
end;

Issue History

Date Modified Username Field Change
2005-03-16 06:45 anonymous New Issue
2005-04-01 09:30 outchy Note Added: 0006825
2005-04-12 08:34 obones Status new => feedback
2005-04-22 08:34 obones Status feedback => closed
2005-06-03 13:07 Robert Rossmair Relationship added related to 0002796