Method isUnicodeIdentifierPart(char ch)
Return type: boolean
Member of:
java.lang.Character
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
} while(Character.isUnicodeIdentifierPart(c)
2
if (!Character.isUnicodeIdentifierPart( uri.charAt( i ) ) &&
3
if ( !Character.isUnicodeIdentifierPart(c) ) {
4
while ((start != 0) && Character.isUnicodeIdentifierPart(string.charAt(start - 1)))
5
while ((start != 0) && Character.isUnicodeIdentifierPart(document.getChar(start - 1)))
6
} else if (!Character.isUnicodeIdentifierPart (c)
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.