Grails:拆分包含管道的字符串

时间:2010-10-01 19:47:08

标签: java regex grails groovy split

我正在尝试拆分String。简单的例子工作:

groovy:000> print "abc,def".split(",");
[abc, def]===> null
groovy:000>

但是我需要将它拆分为管道,而不是逗号,而且我没有得到所需的结果:

groovy:000> print "abc|def".split("|");
[, a, b, c, |, d, e, f]===> null
groovy:000>

当然,我的第一选择是从管道(|)切换到逗号(,)作为分隔符。

但现在我很好奇:为什么这不起作用?逃离管道(\|)似乎没有帮助:

groovy:000> print "abc|def".split("\|");
ERROR org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed, groovysh_parse: 1: unexpected char: '\' @ line 1, column 24.
   print "abcdef".split("\|");
                          ^

1 error
|
        at java_lang_Runnable$run.call (Unknown Source)
groovy:000>

2 个答案:

答案 0 :(得分:57)

您需要拆分\\|

答案 1 :(得分:19)

你必须逃避管道,事实上,它在正则表达式中具有特殊含义。但是,如果使用引号,则还必须转义斜杠。基本上,有两个选择:

asserts "abc|def".split("\\|") == ['abc','def']

或使用/作为字符串分隔符以避免额外的转义

asserts "abc|def".split(/\|/) == ['abc','def']