Saturday 30 July 2011

whether the given 32 bit character is a valid XML 1.1 character.

 

public class Utils {

  /**
   * Tests whether the given 32 bit character is a valid XML 1.1 character.
   */
  public static boolean isXML11Character(int c) {
      return c >= && c <= 0xd7ff
          || c >= 0xe000 && c <= 0xfffd
          || c >= 0x10000 && c <= 0x10ffff;
  }

}

   
  

No comments:

Post a Comment