为什么 YAML 解析器中的键/值对中的 tab 有效?
t: test
Pay attention that it's a tab after :
,and I used this YAML parser to test whether it's valid or not(IMO it's not valid):
Array
(
[t] => test
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 规范,制表符 (U+0009) 和空格 ( U+0020) 被视为可以使用的“空白字符”来界定标记。
那么是什么让您认为在这种情况下这是非法的呢?特别是考虑到 示例 6.3 清楚地表明它是有效的:
(
·
表示空格 (U+0020),而→
表示制表符 (U+0009))。According to the specification, both tab (U+0009) and space (U+0020) are considered “white space characters” that may be used to delimit tokens.
So what makes you think it's illegal in that context? Especially considering that example 6.3 makes it clear that it's valid:
(
·
denotes a space (U+0020), while→
denotes a tab character (U+0009)).