grails – Groovy中的三重单引号字符串 – 结果字符串是否应包含额外的空格?

如果我使用以下groovy代码

description: '''Join the Perl programmers of the Pork Producers
                of America as we hone our skills and ham it up
                a bit.  You can show off your programming chops
                while trying to win a year's supply of pork
                chops in our programming challenge.

                Come and join us in historic (and aromatic),Austin,Minnesota.  You'll kNow when you're
                there!'''

是不是groovy应该创建一个只有行之间的单个空格的长字符串(意味着不保留行之间的空格)?结果字符串将是:

加入美国猪肉生产商的Perl程序员,因为我们磨练我们的技能并加以改进……等等

我得到的字符串包含行之间的所有空格.这是预期的行为吗?

解决方法

从Groovy 1.7.3开始:

def description = '''\
          Join the Perl programmers of the Pork Producers
          of America as we hone our skills and ham it up
          a bit.  You can show off your programming chops
          while trying to win a year's supply of pork
          chops in our programming challenge.

          Come and join us in historic (and aromatic),Minnesota.  You'll kNow when you're
          there!'''.stripIndent()

相关文章

背景:    8月29日,凌晨4点左右,某服务告警,其中一个...
https://support.smartbear.comeadyapi/docs/soapui/steps/g...
有几个选项可用于执行自定义JMeter脚本并扩展基线JMeter功能...
Scala和Java为静态语言,Groovy为动态语言Scala:函数式编程,...
出处:https://www.jianshu.com/p/ce6f8a1f66f4一、一些内部...
在运行groovy的junit方法时,报了这个错误:java.lang.Excep...