简体   繁体   English

在 C# 语言规范中,“具有 Unicode 类 Zs 的任何字符”是什么意思?

[英]In the C# Language Specification what is meant by "Any character with Unicode class Zs"?

Just reading a web page here on the C# language specificaionhttps://msdn.microsoft.com/en-us/library/aa664665(v=vs.71).aspx there is some text that says "Any character with Unicode class Zs", in the context of defining white space.只需在此处阅读有关 C# 语言规范的网页https://msdn.microsoft.com/en-us/library/aa664665(v=vs.71).aspx有一些文字说“具有 Unicode 类 Zs 的任何字符",在定义空白的上下文中。

Please, what is meant by "Any character with Unicode class Zs"?请问,“任何具有 Unicode 类 Zs 的字符”是什么意思?

It might be linked to regular expressions, adding regex tag.它可能链接到正则表达式,添加正则表达式标签。

Unicode codepoints have a classification assigned to each of them. Unicode 代码点具有分配给它们中的每一个的分类。 Codepoints in the Zs class belong to the "Separator, Space" category. Zs类中的代码点属于“分隔符,空格”类别。

It means whitespace characters (separators).它表示空白字符(分隔符)。 Check out this link http://www.fileformat.info/info/unicode/category/Zs/list.htm查看此链接http://www.fileformat.info/info/unicode/category/Zs/list.htm

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM