$split() (jsonata) 函数中的正则表达式给出 "Regular expression matches zero length string" 为什么?

regex in a $split() (jsonata) function giving "Regular expression matches zero length string" why?

我有一个如下所示的字符串文本,只要有 新行并且以日期 dd/mm/yyyy.[=12= 开始,我想拆分文本]

我在 javascript 中使用 jsonata $split() 函数。但是,我收到一个 jsonata 错误,如下所示“正则表达式匹配零长度字符串”。请帮助我如何解决这个问题。

text = "22/03/2012 intro 20/10/2019\n" + 
       "22/03/2012 body\n" + 
       "more body 22/04/2020\n" +
      "22/03/2012 stuff more stuff"


$split(text , /\r?\n(?=(?:0[1-9]|[12][0-9]|3[01])[- \/.](?:0[1-9]|1[012])[- \/.](?:19|20)\d\d)/))
//I want the output to be [ "22/03/2012 intro 20/10/2019",
//                           "22/03/2012 body more body 22/04/2020",
//                           "22/03/2012 stuff more stuff] 
// But my output now is [ "22/03/2012 intro 20/10/2019",
//                           "22/03/2012 body/n + more body 22/04/2020",
//                           "22/03/2012 stuff more stuff]                          

const str = "22/03/2012 intro\n" +
"22/03/2012 body\n" +
"more body\n" +
"22/03/2012 stuff\n" +
"more stuff\n";

console.log(str.match(/^[0-9][0-9][- /.][0-9][0-9][- /.][0-9][0-9][0-9][0-9][a-zA-Z\s]+(?:[a-zA-Z\s]+)/gm));
// Will log ["22/03/2012 intro\n","22/03/2012 body\nmore body\n", "22/03/2012 stuff\nmore stuff\n"]

使用

$split($replace(text, /(\r?\n)\s*\+\s*(?=\d{2}[- \/.]\d{2}[- \/.]\d{4})|\r?\n\s*\+\s*/g, ''), /\r?\n/)

proof

第一个 $replace 删除加号和换行符,并在必要时用行结尾替换。

$split 一个用回车 return + 换行符或仅换行符拆分。