Pattern White Space - Yes

Unicode Version 18.0

Yes is the designation for characters that are classified as whitespace specifically for pattern matching in regular expressions, as defined by the ECMAScript standard. These characters include the space, horizontal tab, vertical tab, line feed, carriage return, form feed, and the Unicode characters U+0085 (next line), U+200E (left-to-right mark), and U+200F (right-to-left mark). When a character holds this value, it is treated as ignorable whitespace in patterns, meaning it can appear freely between tokens without affecting the match result. This facilitates writing readable and multi-line regular expressions. Notably, this set is a subset of general whitespace, deliberately excluding characters like non-breaking space or the zero-width space, to keep pattern behavior predictable and consistent across different environments and input strings.

1-11 of 11 results

U+0009
HT
CHARACTER TABULATION
U+000A
EOL
END OF LINE
U+000B
VT
LINE TABULATION
U+000C
FF
FORM FEED
U+000D
CR
CARRIAGE RETURN
U+0020
SP
Space
U+0085
NEL
NEXT LINE
U+200E
Left-to-Right Mark
U+200F
Right-to-Left Mark
U+2028
Line Separator
U+2029
Paragraph Separator