Constant
UNI_WHITE_SPACE
The White_Space character property.
Since v1.0
enum unibp {
UNI_WHITE_SPACE,
}
Discussion 🔗
Spaces, separator characters and other control characters which should be treated by programming, markup, and other formal languages as “white space” for the purpose of parsing elements. This property includes line break characters, like Line Tabulation (U+000B
) and Carriage Return (U+000D
).
This property is POSIX compatible with the C programming languages isspace
character classification function.
Support for the White_Space
character property is enabled in the JSON configuration file with:
{
"characterProperties": [
"White_Space"
]
}