You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Paul King (JIRA)" <ji...@apache.org> on 2016/02/26 22:49:18 UTC

[jira] [Comment Edited] (GROOVY-7766) Dollar Slashy String swallows new line

    [ https://issues.apache.org/jira/browse/GROOVY-7766?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15169898#comment-15169898 ] 

Paul King edited comment on GROOVY-7766 at 2/26/16 9:49 PM:
------------------------------------------------------------

Yep, what you did (agree it isn't super pretty) or something like:
{code}
def b = '\\'
$/first line $b
second line/$
{code}
or
{code}
$/first line ${'\\'}
second line/$
{code}



was (Author: paulk):
Yep, what you did (agree it isn't super pretty) or something like:
{code}
def b = '\\'
$/first line $b
second line/$
{code}

> Dollar Slashy String swallows new line
> --------------------------------------
>
>                 Key: GROOVY-7766
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7766
>             Project: Groovy
>          Issue Type: Bug
>    Affects Versions: 2.4.5
>            Reporter: dariusan
>
> {code}
> //slash with space near newline works
> assert ' \\ \n '.bytes==$/ \ 
>  /$.bytes
> // slash next to newline will be swallowed
> assert ' \\\n '.bytes==$/ \
>  /$.bytes
> Assertion failed: 
> assert ' \\\n '.bytes==$/ \ /$.bytes
>                 |    |         |
>                 |    false     [32, 32]
>                 [32, 92, 10, 32]
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)