Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [cross-project-issues-dev] com.ibm.icu requirement

Character and UCharacter dissagree on codePoint=8199
   Character.isWhitespace(8199) == false
   UCharacter.isWhitespace(8199) == true
Character and UCharacter dissagree on codePoint=8203
   Character.isWhitespace(8203) == true
   UCharacter.isWhitespace(8203) == false
 
CodePoint 8203: ZERO_WIDTH_SPACE
Not sure what to do with this info, though... for FIGURE_SPACE, we get
   Character.isSpaceChar() true
   Character.isWhitespace() false
which seems odd...
 
Martin
 

Back to the top