带 space 的中文左括号 - 单个字符
Chinese open bracket with space - single char
我正在处理中文的正则表达式,我注意到有一个 space 中文字符的括号
')'注意这不是')'+whitespace(一个删除笔划将删除它)。
什么是开头 space+'(' single char ?
( ) (U+FF08 fullwidth left parenthesis), (U+FF09 fullwidth right parenthesis) are parentheses (round brackets).
—Chinese punctuation (Wikipedia)
正如人们所料,在 Unicode table.
中,左全角括号是右括号之前的字符
许多西方标点符号已进入现代汉语写作。它们周围有很多 space ,使它们与常规字符一样宽,它们的大小都相同。有点像 « i » 在 monospace 字体中必须非常宽。
我正在处理中文的正则表达式,我注意到有一个 space 中文字符的括号 ')'注意这不是')'+whitespace(一个删除笔划将删除它)。 什么是开头 space+'(' single char ?
( ) (U+FF08 fullwidth left parenthesis), (U+FF09 fullwidth right parenthesis) are parentheses (round brackets).
—Chinese punctuation (Wikipedia)
正如人们所料,在 Unicode table.
中,左全角括号是右括号之前的字符许多西方标点符号已进入现代汉语写作。它们周围有很多 space ,使它们与常规字符一样宽,它们的大小都相同。有点像 « i » 在 monospace 字体中必须非常宽。