† Manejo de caracteres (librería estándar de jC)
Char management (jC Standard Library)
i
Operaciones comunes sobre caracteres.
Common operations over characters
©
jbgarcia@uvigo.es
τ
2013-06-01
α
public
final
void
PunctuationChars
Caracteres considerados como signos de puntuación.
Characters considered as punctuation marks: '.', ',', ';', ':', '-', '(', ')'
public
final
void
BlankChars
Caracteres considerados como espacios o delimitadores.
Characters considered as punctuation marks: ' ' and '\n'.
ƒ
public
boolean
isLetter
(
char
ch
)
Decide si el caracter pasado es una letra (a...z o A...Z).
Decides whether the char is letter
»
ch
:
El caracter a comprobar.
The char to check
«
verdadero si es una letra, falso en otro caso.
true if it is letter; false if not
public
boolean
isDigit
(
char
ch
)
Determina si el carácter es un digito.
Decides whether the char is digit
»
ch
:
El caracter a comprobar.
The char to check
«
verdadero si es un dígito, falso en otro caso.
true if it is a digit; false if not.
public
boolean
isAlphaNumeric
(
char
ch
)
Decide si el carácter es un dígito o una letra.
Decides whether the char is digit or letter
»
ch
:
El caracter a comprobar.
The char to check
«
verdadero si es un dígito o carácter, falso en otro caso.
true if it is a digit or letter; false if not.
public
boolean
isControl
(
char
ch
)
Decide si el carácter sirve de control.
Decides whether the char is a control character
»
ch
:
El caracter a comprobar.
The char to check
«
verdadero si es de control, falso en otro caso.
true if it is a control char; false if not.
public
boolean
isLowerCase
(
char
ch
)
Determina si el carácter está en minúsculas.
Decides whether the char is lower case
»
ch
:
El caracter a comprobar.
The char to check
«
verdadero si está en minúsculas, falso en otro caso.
true if it is a lower case char; false if not.
public
boolean
isUpperCase
(
char
ch
)
Decide si el carácter está en mayúsculas o no.
Decides whether the char is upper case
»
ch
:
El caracter a comprobar.
The char to check
«
verdadero si está en mayúsculas, falso en otro caso.
true if it is an upper case char; false if not.
public
boolean
isSpace
(
char
ch
)
Comprueba si el carácter es un delimitador
Checks if the character is a delimiter
»
ch
:
El caracter a comprobar.
The char to check
«
verdadero si es un delimitador, falso en otro caso.
true if it is a delimiter char; false if not.
public
boolean
isPunctuation
(
char
ch
)
Comprueba si el carácter es una marca de puntuación.
Checks if the character is punctuation mark
»
ch
:
El caracter a comprobar.
The char to check
«
verdadero si es puntuación falso en otro caso.
true if it is a punctuation mark char; false if not.
public
char
toLowerCase
(
char
ch
)
Cambia el carácter a minúsculas
Changes the char to lower case
»
ch
:
El caracter a cambiar.
The char to convert
«
el carácter convertido
the char, once converted
public
char
toUpperCase
(
char
ch
)
Cambia el carácter a mayúsculas
Changes the char to upper case
»
ch
:
El caracter a cambiar.
The char to convert
«
el carácter convertido
the char, once converted
jC