9
如何将字符串分成多行?
在YAML中,我的字符串很长。我想将其保留在编辑器的80列(或类似视图)内,所以我想破坏字符串。这是什么语法? 换句话说,我有这个: Key: 'this is my very very very very very very long string' 我想要这个(或达到这种效果的东西): Key: 'this is my very very very ' + 'long string' 我想使用上述引号,因此不需要在字符串中转义任何内容。